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

Feat/user crons #48

Merged
merged 11 commits into from
Jan 7, 2025
Merged
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
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
Loading