alt-art / back-ecommerce

Simple e-commerce written in python using django

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

E-commerce

Simple e-commerce backend with Django and Django Rest Framework.

You can run all the application in https://github.com/alt-art/ecommerce using the docker-compose.

Documentation

The documentation is available here.

Docker

You can run the project with docker.

docker build -t e-commerce .
docker run -p 8000:8000 e-commerce

Installation

  1. Clone the repository

  2. Create a virtual environment

  3. Install the requirements

pip install -r requirements.txt
  1. Run the migrations
python manage.py makemigrations
python manage.py migrate
  1. Create a superuser
python manage.py createsuperuser
  1. Run the server
python manage.py runserver

About

Simple e-commerce written in python using django


Languages

Language:Python 97.3%Language:Dockerfile 2.7%