Skip to content

Basic CRUD involving ReactJS, React Native (Expo) and Node.js connected using socket.io

Notifications You must be signed in to change notification settings

dgbragas/jstack__ezorders

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

36 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

ezOrders: Easy orders management

ezOrders

The ezOrders is a basic application - created during the JStack classes - where the user can preview orders created by your users in the mobile application.

Default scope

  • App: Insert and preview all orders
  • Web: Preview all orders and update order status
  • Back-end: Return a list containing all orders; Insert a new order; and Update order status.

⚠️ Prerequisites

Running the server

# Clonning the repository
git clone https://github.com/dgbragas/jstack__ezorders

# Entering in the folder
cd jstack__ezorders/server

# Installing project dependencies (you can also use 'npm install')
yarn

# Running the application (it will run at http://localhost:3000)
yarn start

Running the web application

# Open another terminal in root folder (jstack__ezorders) and and DON'T stop the backend
# Enter in the front-end folder
cd jstack__ezorders/web

# Installing project dependencies (you can also use 'npm install')
yarn

# Running the application (it will run at http://localhost:3000)
yarn start

Running the mobile app

# Entering in the cloned folder
cd jstack__ezorders/app

# Installing project dependencies (you can also use 'npm install')
yarn

# (After initialize your AVD):
yarn start

Next steps

  • Redesign the mobile and web applications
  • Allow profile creation
  • ...