Update README.md

This commit is contained in:
Jean-Baptiste Pasquier 2020-05-04 12:09:39 +00:00
parent 851fb4104d
commit 35a0a20119
1 changed files with 12 additions and 6 deletions

View File

@ -40,6 +40,8 @@ Get the code of the SIB app on your machine:
```bash ```bash
git clone ... git clone ...
cd sib-app
npm install
``` ```
Then create a `config.json` based on your needs, see Mandatory and Optional Modules on this page. For convienence a `config.sample.json` exists in the source. Then create a `config.json` based on your needs, see Mandatory and Optional Modules on this page. For convienence a `config.sample.json` exists in the source.
@ -136,7 +138,10 @@ On Server: `djangoldp_event` and `djangoldp_upload` packages
On `config.json`: On `config.json`:
```json ```json
"publicDirectory": true "endpoints": {
"events": "http://server.url/events/",
"typeevents": "http://server.url/typeevents/",
}
``` ```
### Project ### Project
@ -163,17 +168,18 @@ On `config.json`:
On `config.json`: On `config.json`:
```json ```json
"publicDirectory": true,
"endpoints": { "endpoints": {
"projects": "http://server.url/projects/", "users": "http://server.url/users/",
"customers": "http://server.url/customers/", "groups": "http://server.url/groups/",
"businessproviders": "http://server.url/businessproviders/", "skills": "http://server.url/skills/",
"skills": "http://server.url/skills/" "uploads": "http://server.url/upload/"
} }
``` ```
### Dashboard ### Dashboard
(In development) Dashboard includes card generation from HTML. To activate them, you need: Dashboard includes card generation from HTML. To activate them, you need:
On `config.json`: On `config.json`: