https://summit2020.reversim.com/
Add the following line to the file /etc/hosts
(use sudo)
127.0.0.1 local.reversim.com
E.g.
echo "127.0.0.1 local.reversim.com" | sudo tee -a /etc/hosts
Install NodeJS version v8.11.1
or similar (various versions work)
Test installation by running:
node -v
Basically, follow this link: https://docs.mongodb.com/manual/installation/
Then run mongod
in a separate tab, e.g. open a new tab and type
mongod
The default database name is ReversimSummit20
, and it's defined in /server/db/constants.js
It's possible to set a custom db connection string by: MONGODB_URI=<your_db_url> yarn start
Intial data import:
make initial-data-import
make run
Type rs
in the server's terminal to restart.
There's a simple UI available for managing the different entities in the system. It's available under the following route:
/internal/backoffice/
In order to use it locally, you should change some configuration in 2 files.
backoffice/index.html
file, change the remote url to http://local.reversim.com:5001/internal/backoffice/config.js
.backoffice/config.js
, change the baseUrl
variable to http://local.reversim.com:5001
.The backoffice is based on an open source tool named RESTool. You may find more info about it in the link below: https://github.com/dsternlicht/RESTool
MIT