Django Template for Saas projects.
Join our Discord server to get community and maintainers support: https://appliku.com/discord
Download fresh Djangitos project template, rename the project folder and copy local development .env
file.
curl -sSL https://github.com/appliku/djangitos/archive/refs/heads/master.zip > djangitos.zip
unzip djangitos.zip
mv djangitos-master myproject
cd myproject
cp start.env .env
Run the project with:
docker-compose up
Apply migrations with:
docker-compose run web python manage.py migrate
Create a super user account:
docker-compose run web python manage.py makesuperuser
The output of the last command will display the login and password for the admin user that was created, like this:
admin user not found, creating one
===================================
A superuser was created with email [email protected] and password xLV9i9D7p8bm
===================================
Open http://0.0.0.0:8060/admin/ and login with these credentials.