A NFT based warranty system for eCommerce
- Clone this repository and launch code:
https://github.com/RahulGopathi/NFT-based-warranty-system.git cd NFT-based-warranty-system code .
Ensure that you have installed Docker (with Docker Compose).
Run the development server:
make dev-start
After executing make dev-start
, you will be running:
- The application on http://localhost:3000
- The API Server on http://localhost:8000
Make database migrations:
make exec
python manage.py makemigrations
python manage.py migrate
Create a superuser:
make exec
python manage.py createsuperuser
View logs of docker containers:
make dev-logs
To stop the development server:
make dev-stop
- Copy
.env.example
to.env
cp .env.example .env
-
To start your frontend and backend development server individually:
Follow the Backend Readme to setup your backend server
Follow the Frontend Readme to setup the frontend server