File tree Expand file tree Collapse file tree 2 files changed +11
-1
lines changed
Expand file tree Collapse file tree 2 files changed +11
-1
lines changed Original file line number Diff line number Diff line change 1111 defaults :
1212 run :
1313 working-directory : backend/scripts
14+ env :
15+ PRODUCTION : ' 1'
16+ DJANGO_SETTINGS_MODULE : ' config.settings.development'
17+ DATABASE_URL : ${{ secrets.SUPABASE_DB_URL }}
18+ POSTGRES_DB : ${{ secrets.POSTGRES_DB }}
19+ POSTGRES_USER : ${{ secrets.POSTGRES_USER }}
20+ POSTGRES_PASSWORD : ${{ secrets.POSTGRES_PASSWORD }}
21+ POSTGRES_HOST : ${{ secrets.POSTGRES_HOST }}
22+ POSTGRES_PORT : ${{ secrets.POSTGRES_PORT }}
23+ SECRET_KEY : ${{ secrets.SECRET_KEY }}
24+
1425 steps :
1526 - name : Checkout repository
1627 uses : actions/checkout@v4
Original file line number Diff line number Diff line change @@ -10,7 +10,6 @@ WORKDIR /app
1010
1111# Copy requirements files and wheels directory
1212COPY requirements.txt .
13- COPY wheels/ ./wheels/
1413
1514# Install Python dependencies
1615RUN pip install --upgrade pip
You can’t perform that action at this time.
0 commit comments