This is a brief description of online shop website using django.
Steps to run in local, do you requiere python 3.x and docker installed:
-
Clone the repository:
[email protected]:JoseJulianMosqueraFuli/ecommerce.git
-
Navigate into the repository:
cd ecommerce
-
Create a new virtual environment
python -m venv venv/ecommerce
-
Activate the virtual environment:
source venv/ecommerce/bin/activate
-
Run the project:
pip3 install -r requirements.txt
-
Run the project:
python manage.py runserver
-
Run for rabbitmq container:
docker pull rabbitmq:3-management docker run -it --rm --name rabbitmq -p 5672:5672 -p 15672:15672 rabbitmq:3-management
-
Run for stripe container:
docker pull stripe/stripe-cli:v1.17.2 docker run --rm -it stripe/stripe-cli listen --forward-to localhost:80000/payment/webhook/ --api-keys sk_test..
Note: More information about stripe docker here
-
Run for redis container:
docker pull redis docker run -it --rm --name redis -p 6379:6379 redis
This project is licensed under the MIT License.
Build it by Jose Julian Mosquera Fuli.