Skip to content

Commit

Permalink
Remove python 3.8 for fastapi
Browse files Browse the repository at this point in the history
  • Loading branch information
BurnySc2 committed Sep 13, 2023
1 parent 72f7f4a commit 3bb78fa
Show file tree
Hide file tree
Showing 4 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test_fastapi_server.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
fail-fast: false
matrix:
os: [ubuntu-latest]
python-version: ['3.8', '3.9', '3.10', '3.11']
python-version: ['3.9', '3.10', '3.11']
runs-on: ${{ matrix.os }}

steps:
Expand Down
Binary file removed fastapi_server/static/puffin-5246026_1920.jpg
Binary file not shown.
1 change: 1 addition & 0 deletions fastapi_server/systemd/fastapiserver.service
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
ExecStart=/usr/bin/docker run --rm --name fastapi_server \
--publish 8000:8000 \
--env STAGE=PROD \
--env-file ./.env
-v ./data:/root/fastapi_server/data \
burnysc2/fastapi_server:latest
Restart=always
Expand Down
1 change: 0 additions & 1 deletion fastapi_server/systemd/fastapiserver_dev.service
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
ExecStart=/usr/bin/docker run --rm --name fastapi_server_dev \
--publish 8001:8000 \
--env STAGE=DEV \
--env TIMEOUT=600 \
-v ./data:/root/fastapi_server/data \
burnysc2/fastapi_server:latest_dev
Restart=always
Expand Down

0 comments on commit 3bb78fa

Please sign in to comment.