Skip to content

Commit

Permalink
small refactor
Browse files Browse the repository at this point in the history
  • Loading branch information
dorukgezici committed Oct 17, 2024
1 parent bbd0d27 commit 3e24fc2
Show file tree
Hide file tree
Showing 15 changed files with 3 additions and 4 deletions.
1 change: 0 additions & 1 deletion .github/workflows/backend-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,6 @@ jobs:
PREFECT_API_URL: ${{ secrets.PREFECT_API_URL }}
SUBABOT_BACKEND_URL: ${{ secrets.SUBABOT_BACKEND_URL }}
SUBABOT_FRONTEND_URL: ${{ secrets.SUBABOT_FRONTEND_URL }}
DETA_PROJECT_KEY: ${{ secrets.DETA_PROJECT_KEY }}
SLACK_CLIENT_ID: ${{ secrets.SLACK_CLIENT_ID }}
SLACK_CLIENT_SECRET: ${{ secrets.SLACK_CLIENT_SECRET }}
SLACK_SIGNING_SECRET: ${{ secrets.SLACK_SIGNING_SECRET }}
Expand Down
2 changes: 1 addition & 1 deletion backend/.dockerignore
Original file line number Diff line number Diff line change
@@ -1 +1 @@
k8s-helm
helm/
2 changes: 1 addition & 1 deletion backend/.env.template
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
SUBABOT_STAGE=
SUBABOT_ENVIRONMENT=
SUBABOT_BACKEND_URL=
SUBABOT_FRONTEND_URL=

Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion backend/subabot/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
# Build paths inside the project like this: APP_DIR / 'subdir'.
APP_DIR = Path(__file__).resolve().parent

STAGE = os.environ.get("SUBABOT_STAGE", "development")
STAGE = os.environ.get("SUBABOT_ENVIRONMENT", "development")
BACKEND_URL = os.environ.get("SUBABOT_BACKEND_URL", "http://localhost:8000")
FRONTEND_URL = os.environ.get("SUBABOT_FRONTEND_URL", "http://localhost:4321")

Expand Down

0 comments on commit 3e24fc2

Please sign in to comment.