django-cryptolock/example
Gonçalo Valério ed4e085011 first working prototype of bitid 2020-03-10 15:00:11 +00:00
..
example first working prototype of bitid 2020-03-10 15:00:11 +00:00
templates Add urls.py and move default template location to cryptolock folder 2019-11-30 21:46:54 +00:00
testauth Add urls.py and move default template location to cryptolock folder 2019-11-30 21:46:54 +00:00
README.md Initial commit. Cookiecutter based project structure 2019-09-24 18:02:54 +01:00
manage.py Initial commit. Cookiecutter based project structure 2019-09-24 18:02:54 +01:00
requirements.txt Initial commit. Cookiecutter based project structure 2019-09-24 18:02:54 +01:00

README.md

##Example Project for django_cryptolock

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 example 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