Skip to content

Latest commit

 

History

History
39 lines (28 loc) · 595 Bytes

File metadata and controls

39 lines (28 loc) · 595 Bytes

How to develop locally

Install

Database

  • The locally running servers don't depend on a locally running database, instead they connect directly to the one running up on AWS, configured with some .env files.

Run It

API

// API comes up on http://127.0.0.1:3001
go run main.go

CHAT

npm install
// API comes up on http://localhost:3002
npm start

FRONTEND

npm install
// Launches http://localhost:3000/login
npm start