Skip to content

Commit

Permalink
Merge pull request #48 from edenartlab/feat/user-crons
Browse files Browse the repository at this point in the history
Feat/user crons
  • Loading branch information
genekogan authored Jan 7, 2025
2 parents d04a7cf + bf9fea9 commit 9a9dfc4
Show file tree
Hide file tree
Showing 18 changed files with 777 additions and 449 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/prod.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -46,4 +46,4 @@ jobs:

- name: Deploy to Modal
working-directory: eve
run: rye run modal deploy ./eve/api.py
run: rye run modal deploy ./eve/api/api.py
2 changes: 1 addition & 1 deletion .github/workflows/staging.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -46,4 +46,4 @@ jobs:

- name: Deploy to Modal
working-directory: eve
run: rye run modal deploy ./eve/api.py
run: rye run modal deploy ./eve/api/api.py
2 changes: 1 addition & 1 deletion eve/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ def load_env(db):
db = db.upper()
if db not in ["STAGE", "PROD"]:
raise ValueError(f"Invalid database: {db}")

os.environ["DB"] = db

# First try ~/.eve
Expand Down
1 change: 0 additions & 1 deletion eve/agent.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
import os
import yaml
import time
import json
import traceback
Expand Down
363 changes: 0 additions & 363 deletions eve/api.py

This file was deleted.

Empty file added eve/api/__init__.py
Empty file.
Loading

0 comments on commit 9a9dfc4

Please sign in to comment.