I'm trying to make a batch file that runs syncdb to create a database file, and then create a superuser with the username "admin" and the password "admin".
My code so far:
python manage.py syncdb --noinput
python manage.py createsuperuser --username admin --email [email protected]
python manage.py runserver
Now this prompts me to enter a password and then confirm the password. Can I enter this information with a command from the same batch file, another batch file, or is this just not possible?