An E-commerce Game Store
- Copy files to your server and configure webserver
- Install dependencies running the below from CLI (main project folder):
pip install -r requirements.txt
Note that I pinned django version to 4.0.x. This is to make sure no updates are installed which could introduce breaking changes. Obviously this can easily be changed.
- Edit the
.sample-env
file in main directory
This file holds sensitive settings, which should not be pushed to git. Example content suitable for development/testing could be:
SECRET_KEY=''
EMAIL_HOST=''
EMAIL_PORT=''
EMAIL_HOST_USER=''
EMAIL_HOST_PASSWORD=''
EMAIL_USE_TLS=''
EMAIL_USE_TLS=''
STRIPE_PRIVATE_KEY=''
CLOUD_NAME=''
API_KEY=''
API_SECRET=''
Visit https://djecrety.ir/ to GENERATE DJANGO SECRET KEY and put it in the SECRET_KEY value.