LeuAlmeida / fastfeet

🚚 Fastfeet is a fictitious logistic company to get the Rocketseat's Bootcamp certificate.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

FastFeet

FastFeet Application from Rocketseat GoStack

⚑ ReactJS application to obtain the GoStack bootcamp certify

GitHub language count Made by LΓ©u Almeida

FastFeet presentation

Separated repositories with your own commits and presentations:

πŸ”Œ Backend | πŸ’» Frontend | πŸ“± Mobile App

Introduction

Fastfeet is a fictitious logistic company and this repository belong to the business logic and is the basis of a general structure and all of this be a part of the Rocketseat bootcamp certify.

πŸ”Œ Prerequisites

πŸ” API Instructions

First get all the requirements installed on your system. You will need to run the API using some Docker Images like PostgreSQL and Redis. Certified that do you have wall prerequisites, start the docker images dependencies:

# Change the <password> below and on .env file to run PostgreSQL
$ sudo docker run --name fastfeet -e POSTGRES_PASSWORD=<password> -p 5432:5432 -d postgres:11

# Execute the Redis docker
$ sudo docker run --name redisfastfeet -p 6379:6379 -d -t redis:alpine

Getting started the API Restful backend

Make a clone from the repo and install the dependencies

# After clone this repo, enter in the API folder
$ cd api

# Install all dependencies using Yarn
$ yarn

Certify yourself that all environments are correct

# Copy the .env folder
$ cp .env.example .env

# Insert your environments into .env file
$ nano .env

Prepare the PostgreSQL database

# Migrate the database
$ yarn sequelize db:migrate

# Run the seeds
$ yarn sequelize db:seed:all

Start the project

# Run the development server
$ yarn dev

# Case the output appears like this, is all ok
yarn run v1.19.1
$ nodemon src/server.js
[nodemon] 2.0.2
[nodemon] to restart at any time, enter `rs`
[nodemon] watching dir(s): *.*
[nodemon] watching extensions: js,mjs,json
[nodemon] starting `node -r sucrase/register src/server.js`

# The backend will run on port 3333
# https://localhost:3333

In a separated terminal, run the queue

# Run the queue to enable mails and dependencies that uses bee-queue
$ yarn queue

# Case the output appears like this, is all ok
yarn run v1.19.1
$ nodemon src/queue.js
[nodemon] 2.0.2
[nodemon] to restart at any time, enter `rs`
[nodemon] watching dir(s): *.*
[nodemon] watching extensions: js,mjs,json
[nodemon] starting `node -r sucrase/register src/queue.js`

πŸ’» Web Application instructions

Make a clone from the repo and install the dependencies. (Certify yourself that the api is running)

# After clone this repo, enter in the Web folder
$ cd web

# Install all dependencies using Yarn
$ yarn

# Run the project
$ yarn start

πŸ“± Mobile App instructions (Has not been tested on iOS)

Make a clone from the repo and install the dependencies

# After clone this repo, enter in the DevRadar folder
$ cd fastfeet-app

# Install all dependencies using Yarn
$ yarn

# Run the react native metro bundle
$ react-native start

# Run the project
$ react-native run-android

©️ License

MIT License.

See LICENSE for details.


About

🚚 Fastfeet is a fictitious logistic company to get the Rocketseat's Bootcamp certificate.


Languages

Language:JavaScript 84.5%Language:HTML 8.7%Language:Java 2.6%Language:Objective-C 1.8%Language:Ruby 1.6%Language:Starlark 0.8%