Markdown CMS using RingoJS server-side and @jbt markdown-editor client-side
First of all, install RingoJS packages manager (equivalent to npm but for RingoJS):
ringo-admin install grob/rpThen install all the dependencies MdMS needs.
To do so, use RingoJS's packages manager rp that you just installed:
cd /path/to/mdms
rp installNow MdMS needs a redis db in order to run.
You can easily start one using Docker.
docker run -p 6379:6379 -d redis:alpineThe database configuration is available in
/path/to/mdms/config.json
ringo server.js --port=9090 mdmsInstanceNameThe mdmsInstanceName is used by the WebSocket client as an ID
You can now open your browser and go to localhost:9090
NB: if you want to add some dummy data to the DB you can run
ringo tool/fakedb.js