Skip to content

Latest commit

 

History

History
68 lines (50 loc) · 1.51 KB

README.md

File metadata and controls

68 lines (50 loc) · 1.51 KB

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

Django Boilerplate - Open-Source Web App.


How to use it

$ # 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/

Docker execution

@WIP


Credits & Links


License

@MIT



Django Boilerplate - provided by AppSeed