You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
3. **Deploy** (build, push, and restart Cloud Run):
157
+
158
+
```bash
159
+
make gcp-deploy
160
+
```
161
+
162
+
Or run individual steps:
163
+
164
+
```bash
165
+
make build # Build the container image locally
166
+
make gcp-push # Push image to GCR
167
+
make gcp-restart # Update the Cloud Run service
168
+
```
169
+
170
+
### 5. Static Files
171
+
172
+
Currently, static files are served directly by the container using `dj_static.Cling`. Ensure `STATIC_URL` and `STATICFILES_STORAGE`in`settings.py` are configured appropriately (local serving is the default if GCS static configuration is commented out).
0 commit comments