6 lines
176 B
Bash
Executable File
6 lines
176 B
Bash
Executable File
#!/bin/bash
|
|
# python manage.py makemigrations
|
|
# python manage.py migrate
|
|
# python manage.py init -y
|
|
uvicorn application.asgi:application --port 8000 --host 0.0.0.0 --workers 4
|