This starter template combines three technologies to create a solid and smooth full-stack web application.
Django provides the structure for the back-end, Inertia.js handles page navigation in a native way, while Svelte takes care of the user interface.
Together they provide a solid foundation to build any kind of web application.
python -m venv myvenv
source myvenv/bin/activate
pip install -r requirements.txt
python manage.py migrate
npm install
python manage.py runserver
npm run dev
Now open your browser and go to: http://localhost:8000/
PAY ATTENTION: If you use this template in production remember to change the SECRET_KEY
of the Django project.
Enjoy! :)
AP