Running server
This application is using MongoDB. Be sure you have it. You can run it with Docker for development.
docker run --name name -p 27017:27017 -d mongo
Also you will need SendGrid account for creating registration confirming mails.
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
- Login with
test@devery.devery
and password12345678
Running client
cd ./client
- Change ip address of server in
utilities/sdk/index.js
- Run
npm install
oryarn
- Run development server using
npm run dev
oryarn dev
- open
localhost:1234
in a browser
In case you want to build this repository use npm run build
or yarn build