Skip to content

CaioQuirinoMedeiros/delivery_api

Folders and files

NameName
Last commit message
Last commit date
Dec 18, 2019
Jul 1, 2019
Apr 21, 2020
Dec 17, 2019
Jul 4, 2019
Jun 12, 2019
Jun 21, 2019
Jun 12, 2019
Jul 6, 2019
Dec 17, 2019
Dec 18, 2019
Jun 12, 2019
May 10, 2021
Jun 21, 2019
Jun 12, 2019

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