Skip to content

Commit

Permalink
Merge pull request #67 from GTZ-STUDIO/setup-CD
Browse files Browse the repository at this point in the history
Setup cd
  • Loading branch information
Verzaccii committed Mar 9, 2024
2 parents 847a585 + abce1df commit 4b324b7
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions .github/workflows/DjangoDeployment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@
name: Build and deploy Python app to Azure Web App

env:
AZURE_WEBAPP_NAME: your-app-name # set this to the name of your Azure Web App
PYTHON_VERSION: '3.8' # set this to the Python version to use
AZURE_WEBAPP_NAME: lvlupgg-backend # set this to the name of your Azure Web App
PYTHON_VERSION: '3.10' # set this to the Python version to use

on:
push:
Expand Down Expand Up @@ -50,7 +50,10 @@ jobs:
source venv/bin/activate
- name: Install dependencies
run: pip install -r requirements.txt
run: |
pip install -r requirements.txt
pip install djangorestframework
pip install django-cors-headers
# Optional: Add step to run tests here (PyTest, Django test suites, etc.)

Expand Down

0 comments on commit 4b324b7

Please sign in to comment.