any change to test pr
docker run --name name -p 27017:27017 -d mongo
cd ./server
- Type
npm install
oryarn
- Copy
.env.example
to.env
file and fill it - set FORCE_BOOTSTRAP_DATA ->
true
to seed database for a first(!) run - run
npm run dev
oryarn dev
cd ./client
- Change ip address of server in
utilities/sdk/index.js
- Run
npm install
oryarn
- Run development server using
npm start
oryarn start
- open
localhost:1234
in a browser
In case you want to build this repository use npm run build
or yarn build