Backend Service for hosting the party
First get the repo:
git clone https://github.com/mmmgtc/meme-party-backend/
cd meme-party-backend
Setup the Dependencies (We suggest using a seperate virtualenv)
pip install -r requirments.txt
Prepare the Database
python manage.py migrate
The Web Service Needs a secret key for Django and an Infura ETH API Key to handle login with Web3.
You can get a free Infura ETH API key from here.
Create a .env
file in the project root and add your keys like shown below:
SECRET_KEY = 'XXXXXX'
WEB3_KEY = 'YYYYYY'
Run The Dev Server
python manage.py runserver