Open-Source Web App coded in Django Framework on top of Argon Dashboard design. Features:
- SQLite, Django native ORM
- Modular design
- Session-Based authentication (login, register)
- Forms validation
- UI Kit: Argon Dashboard provided by Creative-Tim
$ # Get the code
$ git clone https://github.com/app-generator/django-boilerplate.git
$ cd django-boilerplate
$
$ # Virtualenv modules installation (Unix based systems)
$ virtualenv --no-site-packages env
$ source env/bin/activate
$
$ # Virtualenv modules installation (Windows based systems)
$ # virtualenv --no-site-packages env
$ # .\env\Scripts\activate
$
$ # Install modules
$ # SQLIte version
$ pip3 install -r requirements.txt
$
$ # Create tables
$ python manage.py makemigrations
$ python manage.py migrate
$
$ # Start the application (development mode)
$ python manage.py runserver
$
$ # Access the web app in browser: http://127.0.0.1:8000/
@WIP
- Django Boilerplate - yTube presentation
- Django Framework - Offcial website
@MIT
Django Boilerplate - provided by AppSeed