Skip to content

Files

Latest commit

 

History

History
 
 

demo

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 
 
 

##Demo Project for admintab

This example is provided as a convenience feature to allow potential users to try the app straight from the app repo without having to create a django project.

It can also be used to develop the app in place.

To run this example, follow these instructions:

  1. Navigate to the demo directory

  2. Install the requirements for the package:

     pip install -r requirements.txt
    
  3. Make and apply migrations

     python manage.py makemigrations
     
     python manage.py migrate
    
  4. Run the server

     python manage.py runserver
    
  5. Access from the browser at http://127.0.0.1:8000