Djcommerce is a full e-commerce web application built with the Django framework. built with performance and ease-of-use in mind.
- Home page
- Cart system
- Payment page
git clone https://github.com/akram09/Djcommerce.git
cd Djcommerce
if you are using a virtualenv then you need to create a new virtual environment and activate it
virtualenv env
source env/bin/activate
then install install the requirement packages
pip install -r requirements.txt
python manage.py makemigration
python manage.py migrate
python manage.py runserver
python manage.py createsuperuser
for now the docker compose have only the web container that use simple Sqlite file, I will be adding nginx server and postgres as Db
docker-compose build
docker-compose up -d