Skip to content

Latest commit

 

History

History
34 lines (26 loc) · 779 Bytes

getting-started.md

File metadata and controls

34 lines (26 loc) · 779 Bytes

Getting Started

The easiest way to get started is to clone the repository:

Get the latest snapshot

git clone --depth=1 https://github.com/nutstick/Chula-Expo.git myproject
# change directory
cd myproject
# install NPM dependencies
npm install

Mongodb set up

if you aren't yet install mongodb driver, install it. And config mongod.exe path in script/rundb.sh

DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )/../mongodb" && pwd )"
# config mongodb path here
"$your path\mongod.exe" --dbpath "$DIR"

run mongodb

sh ./script/rundb.sh

Starting Server

if you aren't yet install nodejs, install it. Start running your NodeJS with command

npm run start