Skip to content

An eccomerce webapp built with Django and React. The backend is a REST API built with Django Rest Framework and uses a PostgreSQL database. Other tools used in this project include RabbitMQ and Celery.

License

Notifications You must be signed in to change notification settings

Edu58/APO-Store

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

66 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

APO-Store

An e-commerce REST API built with Django.

Getting Started

git clone https://github.com/Edu58/APO-Store.git
cd APO-Backend
python3 -m venv venv
source venv/bin/acivate
pip install -r requirements.txt
python3 manage.py runserver

Prerequisites

Requirements for the software and other tools to build, test and push

Installing

  • Setup RabbitMQ on your machine. You can follow RabbitMQ documentation for this.

  • Setup Redis on your machine. You can follow Redis documentation

  • clone the repository

git clone https://github.com/Edu58/APO-Store.git
  • Navigate into teh APO-Backend directory
cd APO-Backend
  • Create a virtual environment
python3 -m venv venv
  • Activate the virtual environment
source venv/bin/acivate
  • Install all the required packages from the provided requirements.txt file
pip install -r requirements.txt
  • Create a .env file in the APO-Backend directory
touch .env
  • Add the following configuration inside the .env file
SECRET_KEY='<add your django secret key here>'
DEBUG=<will either be True or False>
DB_TYPE="postgresql"
DB_NAME=<you database name>
DB_USER=<your database username>
DB_PASSWORD=<you database password>
ALLOWED_HOSTS=<allowed hosts e.g. 127.0.0.1>
  • Start the project from the APO-Backend directory
python3 manage.py runserver
  • View the Swagger API documentation by entering the following url in your browser URL bar. Make sure the server is running
http://127.0.0.1:8000/api/v1/docs/swagger/
  • View the Redoc API documentation by entering the following url in your browser URL bar. Make sure the server is running
http://127.0.0.1:8000/api/v1/docs/redoc/

Running the tests

  • From the APO-Backed folde run the following command
python3 manage.py test

Built With

Contributing

Contributions are very much welcome. Feel free to clone this repository and make changes that you think would benefit anyone using this project. After this create a pull request, it will be reviewed and accepted if it is deemed worthy.

Contributions to create a working front end are also welcome.

Authors

See also the list of contributors who participated in this project.

License

This project is licensed under the MIT License see the LICENSE.md file for details

Acknowledgments

  • Hat tip to anyone whose code is used

About

An eccomerce webapp built with Django and React. The backend is a REST API built with Django Rest Framework and uses a PostgreSQL database. Other tools used in this project include RabbitMQ and Celery.

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published