Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix/fix cronjob #329

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions .clever.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
{
"apps": [
{
"app_id": "app_50bfd872-632e-4cb6-abc2-b94479db4d03",
"org_id": "orga_07e564aa-7ea8-4a52-bea7-e029e3d8fa35",
"deploy_url": "https://push-n3-par-clevercloud-customers.services.clever-cloud.com/app_50bfd872-632e-4cb6-abc2-b94479db4d03.git",
"git_ssh_url": "git+ssh://[email protected]/app_50bfd872-632e-4cb6-abc2-b94479db4d03.git",
"name": "trawlwatch_prod",
"alias": "trawlwatch_prod"
}
]
}
8 changes: 8 additions & 0 deletions .idea/.gitignore

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

14 changes: 14 additions & 0 deletions .idea/12_bloom.iml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 6 additions & 0 deletions .idea/inspectionProfiles/profiles_settings.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 7 additions & 0 deletions .idea/misc.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 8 additions & 0 deletions .idea/modules.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 6 additions & 0 deletions .idea/vcs.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 3 additions & 0 deletions backend/clevercloud/cron.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
[
"*/15 * * * * /bin/sh $ROOT/etl-dummy.sh"
]
2,700 changes: 2,700 additions & 0 deletions backend/uv.lock

Large diffs are not rendered by default.

3 changes: 0 additions & 3 deletions clevercloud/clever.json

This file was deleted.

3 changes: 3 additions & 0 deletions clevercloud/cron.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
[
"*/1 * * * * /bin/sh $ROOT/etl-dummy.sh"
]
7 changes: 7 additions & 0 deletions etl-dummy.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
#! /bin/sh

source /home/bas/venv/bin/activate
cd $APP_FOLDER

echo $APP_FOLDER
echo "Playing dummy script"
Loading