My first E-shop django application!
I try to make it as good as it could be and improve it over time :D
Use the package manager pip to install the requirements.
For development:
pip install eshop/requirements/development.txt
For production:
pip install eshop/requirements/production.txt
After installing the requirements you should create a .end
file inside eshop directory (project root directory) and fill out these values:
SECRET_KEY=
DEBUG=True or False
RECAPTCHA_PUBLIC_KEY_V2=
RECAPTCHA_PRIVATE_KEY_V2=
RECAPTCHA_PUBLIC_KEY_V3=
RECAPTCHA_PRIVATE_KEY_V3=
SQL_NAME=
SQL_USER=
SQL_PASS=
Just use it as you would use a Django project.
Use wsgi.py
or asgi.py
for production or use the manage.py
for development.
Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.
Please make sure to update tests as appropriate.