diff --git a/docs/.api.md b/docs/.api.md index ddc805aa..7c219609 100644 --- a/docs/.api.md +++ b/docs/.api.md @@ -7,7 +7,7 @@ POST **`/event`** > info "info" -> `Content-Type` has to be `multipart/form-data` 'cause support image upload +> `Content-Type` has to be `multipart/form-data` to support image upload **Params** diff --git a/docs/_config.yml b/docs/_config.yml index faada49b..9901a6c6 100644 --- a/docs/_config.yml +++ b/docs/_config.yml @@ -17,7 +17,7 @@ title: Gancio email: lesion@autistici.org description: >- # this means to ignore newlines until "baseurl:" A shared agenda for local communities with AP support -baseurl: "" # the subpath of your site, e.g. /blog +baseurl: "/next" # the subpath of your site, e.g. /blog url: "https://gancio.org" # the base hostname & protocol for your site, e.g. http://example.com #twitter_username: jekyllrb #github_username: jekyll diff --git a/docs/dev/api.md b/docs/dev/api.md index 66c28914..3d3769b1 100644 --- a/docs/dev/api.md +++ b/docs/dev/api.md @@ -21,7 +21,7 @@ POST **`/event`** > info "info" -> `Content-Type` has to be `multipart/form-data` 'cause support image upload +> `Content-Type` has to be `multipart/form-data` to support image upload **Params** diff --git a/docs/install/debian.md b/docs/install/debian.md index a41829ca..01ed88f8 100644 --- a/docs/install/debian.md +++ b/docs/install/debian.md @@ -19,7 +19,7 @@ apt-get update && apt-get install yarn 1. Install Gancio ```bash -yarn global add --silent https://gancio.org/latest.tgz 2> /dev/null +yarn global add --silent {{site.url}}{% link /latest.tgz %} 2> /dev/null ``` 1. Setup with postgreSQL __(optional as you can choose sqlite)__ @@ -64,6 +64,6 @@ sudo pm2 startup -u gancio ## Upgrade ```bash -sudo yarn global add --silent https://gancio.org/latest.tgz 2> /dev/null +sudo yarn global add --silent {{site.url}}{% link /latest.tgz %} 2> /dev/null sudo service pm2 restart ``` diff --git a/docs/install/docker.md b/docs/install/docker.md index f862e7d6..4d26c017 100644 --- a/docs/install/docker.md +++ b/docs/install/docker.md @@ -26,8 +26,8 @@ cd /opt/gancio
1. **Download docker-compose.yml and Dockerfile** ```bash -wget https://gancio.org/docker/Dockerfile -wget https://gancio.org/docker/sqlite/docker-compose.yml +wget {{site.url}}{% link /docker/Dockerfile %} +wget {{site.url}}{% link /docker/sqlite/docker-compose.yml %} ``` @@ -43,8 +43,8 @@ docker-compose run --rm gancio gancio setup --docker --db=sqlite 1. **Download docker-compose.yml and Dockerfile** ```bash -wget https://gancio.org/docker/Dockerfile -wget https://gancio.org/docker/postgres/docker-compose.yml +wget {{site.url}}{% link /docker/Dockerfile %} +wget {{site.url}}{% link /docker/postgres/docker-compose.yml %} ``` 1. Build docker image and launch interactive setup @@ -71,22 +71,22 @@ tail -f data/logs/gancio.log 1. Point your web browser to [http://localhost:13120](http://localhost:13120) or where you specified during setup and enjoy :tada: -1. Edit `data/config.json` and restart the container on your needs, see [Configuration](/config) for more details. +1. Edit `data/config.json` and restart the container on your needs, see [Configuration]({% link install/configuration.md %}) for more details. ## Upgrade > warning "Backup your data" > Backup your data is generally a good thing to do and this is especially true before upgrading. -> Don't be lazy and [backup](/backup) your data! +> Don't be lazy and [backup]({% link install/backup.md %}) your data! > error "Upgrade from a version < 1.0" > Since v1.0 our docker setup is changed and a new container has to be built: > > 1. `cd /opt/gancio` -> 1. [Backup your data](/backup) -> 1. Download new `Dockerfile`
`wget https://gancio.org/docker/Dockerfile` -> 1. Download new `docker-compose.yml` (substitute \ to sqlite or postgres):
`wget https://gancio.org/docker//docker-compose.yml` +> 1. [Backup your data]({% link install/backup.md %}) +> 1. Download new `Dockerfile`
`wget {{site.url}}{% link /docker/Dockerfile %}` +> 1. Download new `docker-compose.yml` (substitute `sqlite` to `postgres` in case):
`wget {{site.url}}{% link /docker/sqlite/docker-compose.yml %}` > 1. Build the new container `docker-compose build` > 1. Extract your backup into `./data`
`mkdir data; tar xvzf gancio--backup.tgz -C data` > 1. Stop your old container `docker-compose stop` diff --git a/server/api/index.js b/server/api/index.js index 55a9722f..f971a01c 100644 --- a/server/api/index.js +++ b/server/api/index.js @@ -71,7 +71,7 @@ api.put('/place', isAdmin, eventController.updatePlace) * @category Event * @name /event * @type POST - * @info `Content-Type` has to be `multipart/form-data` 'cause support image upload + * @info `Content-Type` has to be `multipart/form-data` to support image upload * @param {string} title - event's title * @param {string} description - event's description (html accepted and sanitized) * @param {string} place_name - the name of the place