Demo web site

To execute the demo WEB site in which django-gentelella is implemented you must follow these steps:

From the terminal after cloned the repository.

  1. You must create an environment and active it, as follows:

$ virtualenv env -p python3.8
$ source env/bin/activate
  1. The second step is to install the requirements:

$ pip install -r requirements.txt
  1. Then in django-gentelella-widgets/demo directory, you must execute Django migrate command:

$ python manage.py migrate
  1. Load the sidebar menu with this custom command:

$ python manage.py createdemo
  1. After that install requests library and execute django-gentelella custom command to download and set the assets with:

$ pip install requests
$ python manage.py loaddevstatic
  1. At this point the project is ready so, launch the server with:

$ python manage.py runserver