5 lines
106 B
Bash
5 lines
106 B
Bash
#!/bin/sh
|
|
source venv/bin/activate
|
|
echo "Creating Superuser."
|
|
python manage.py createsuperuser
|
|
echo "Done" |