Skip to content

Instantly share code, notes, and snippets.

View Palwisha-18's full-sized avatar
๐Ÿš€

Palwisha Akhtar Palwisha-18

๐Ÿš€
View GitHub Profile
@Palwisha-18
Palwisha-18 / entrypoint.sh
Created June 4, 2023 21:29
DRF project entrypoint.sh
#!/bin/sh
echo "Running Database Migrations"
python manage.py makemigrations
python manage.py migrate
echo "Running app1 management commands"
python manage.py sample_management_command
exec "$@"
@Palwisha-18
Palwisha-18 / docker-compose.yml
Last active June 9, 2023 11:08
DRF project docker-compose.yml
version: '3'
services:
web_app_db:
restart: always
container_name: web-app-db
image: postgres:11
environment:
- POSTGRES_USER=${POSTGRES_USER}
- POSTGRES_NAME=${POSTGRES_NAME}