Skip to content
This repository has been archived by the owner on Feb 18, 2023. It is now read-only.

Latest commit

 

History

History
98 lines (62 loc) · 1.16 KB

README.md

File metadata and controls

98 lines (62 loc) · 1.16 KB

Animal House

preview

Installing

To install all the needed packages do

npm i
yarn setup

Starting

Database

To start the db container run

yarn db

To stop it run

yarn db:down

Note: you will find an handy mongo-express GUI at http://localhost:8081.

API and Backoffice

To compile and start the server run

yarn server

it will start the server for the apis and the backoffice.

frontoffice

To run the frontoffice React project in dev mode simply run

yarn front

Game

To run the game vue project in dev mode simply run

yarn game

All

To run all the projects in dev mode rum

yarn all

Build and production mode

To build all the sub-projects run

yarn build

and to start then in production mode run

yarn start

to build only a specific project run

yarn build:server
yarn build:front
yarn build:game

Other

To format all the sub-projects run

yarn format