Skip to content

CaioQuirinoMedeiros/delivery_api

Repository files navigation

Pizza Delivery - API

API Documentation

About

This project is part of the final challenge of Rocketseat bootcamp course. It's a delivery application of a fantasy pizza parlor.

What it does?

This application allows the creation of products of different categories and sizes, and order management, which can be done by the administrator on the web. The customer, using the app can view the products, add to cart and place a order. It also allows image upload.

Integration

This AdonisJS API is consumed by an mobile app, for customers, and an web app for managing. Both were built with React, check them out.

⬇️ Installing

Cloning the repo

git clone https://github.com/CaioQuirinoMedeiros/delivery_api.git

cd delivery_api

Installing dependencies

npm install

🔧 Setting up

Set the environment variables in a .env file as exemplified in the .env.example

Run the migrations to create the database

npx adonis migration:run

Run the seeds to populate the database

npx adonis seed

🏃 Running

Just start the server

npm run start