A simple bidding platform on products
Live Demo: https://spike87.pythonanywhere.com/
https://github.com/abijoy/abay.git
cd abay
First create and activate virtual environment then install the required packages.
python3 -m venv .venv
source .venv/bin/activate
pip install -r requirements.txt
cat .env.example > .env
In your .env
set the following environment variables:
DJANGO SPECIFIC CONFIG
SECRET_KEY
: add a arbitrary secret key needed by djangoDEBUG
: set eitherTrue
orFalse
EMAIL CONFIG
EMAIL_HOST
: Your email host(i.e. smtp.gmail.com )EMAIL_PORT
: 587EMAIL_HOST_USER
: Your email address.EMAIL_HOST_PASSWORD
: Your email password.
Carefully modify your .env
file.
python manage.py migrate
python manage.py runserver