Skip to content

Latest commit

 

History

History
74 lines (53 loc) · 1.51 KB

README.md

File metadata and controls

74 lines (53 loc) · 1.51 KB

A helper tool for bronze certification in the context of MOSE competence

Deploy

Install NodeJS 8.6 or higher.

# clone or download the source
git clone https://github.com/leochrisis/Spider-MoseAppraisel.git my-folder-name

# go to the folder
cd my-folder-name

# install dependencies
npm install

# your .env file setups things like database connection (default pg)
cp .env.example .env

# build the app
npm run migrate
npm run seed
npm run build

# start the server
npm start

Go to localhost:9000 to see the application running.

Development

# clone or download the source
git clone https://github.com/leochrisis/Spider-MoseAppraisel.git my-folder-name

# go to the folder
cd my-folder-name

# install dependencies
npm install

# your .env file setups things like database connection (default pg)
cp .env.example .env

# build the app
npm run migrate
npm run seed

# start the server
npm run dev

Learn more