Example Project for web3auth
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:
-
Clone the repository
-
Navigate to the
example
directory -
Install the requirements for the package (probably in a virtualenv):
pip install -r requirements.txt
-
Make and apply migrations
python manage.py makemigrations python manage.py migrate
-
Run the server
python manage.py runserver
-
Access from the browser at
http://127.0.0.1:8000