2018-06-26 15:34:38 +02:00
|
|
|
Cyclassist
|
|
|
|
==========
|
2018-06-25 18:29:57 +02:00
|
|
|
|
2018-06-26 15:34:38 +02:00
|
|
|
> Track and share issues (work, interruption in routes, parked cars) in
|
|
|
|
> realtime on bike lanes!
|
2018-06-25 18:29:57 +02:00
|
|
|
|
2018-06-26 15:34:38 +02:00
|
|
|
This app is made of two parts: a client webapp and a server part to store and
|
2018-08-03 17:14:53 +02:00
|
|
|
serve the issues. This code is the code running behind https://cyclo.phyks.me/
|
|
|
|
(the stable and official instance).
|
2018-06-26 15:34:38 +02:00
|
|
|
|
2018-08-03 17:14:53 +02:00
|
|
|
**A sandbox instance if you want to try it out without polluting the main instance
|
|
|
|
is available at https://cyclo-dev.phyks.me**. Please note however this is a
|
|
|
|
sandbox instance which might be ahead of the official https://cyclo.phyks.me
|
|
|
|
instance from time to time, so that it might break from time to time.
|
2018-08-03 15:36:15 +02:00
|
|
|
|
2018-06-29 10:51:43 +02:00
|
|
|
As of current version, only the client side part (code running on your local
|
2018-07-13 16:08:32 +02:00
|
|
|
device) handles your geolocation. **Your precise geolocation is never sent**
|
|
|
|
to the server or any external resource. However, the map background is
|
|
|
|
downloaded on demand from [Thunderforest](http://thunderforest.com/) so they
|
|
|
|
could know the location of the displayed map.
|
2018-06-26 15:34:38 +02:00
|
|
|
|
2018-06-29 10:51:43 +02:00
|
|
|
## OpenData
|
|
|
|
|
|
|
|
The data collected by https://cyclo.phyks.me/ is available under an
|
|
|
|
[ODbL](https://opendatacommons.org/licenses/odbl/) license. You can get the
|
2018-07-31 17:04:06 +02:00
|
|
|
most up to date JSON dump of available reports at
|
|
|
|
https://cyclo.phyks.me/api/v1/reports.
|
|
|
|
|
|
|
|
Statistics about the instance can be fetched at
|
|
|
|
https://cyclo.phyks.me/api/v1/stats.
|
2018-06-29 10:51:43 +02:00
|
|
|
|
|
|
|
## Hosting your own
|
|
|
|
|
|
|
|
### Client part
|
|
|
|
|
|
|
|
#### Build setup
|
2018-06-25 18:29:57 +02:00
|
|
|
|
|
|
|
``` bash
|
2018-06-26 15:34:38 +02:00
|
|
|
# Install JS dependencies
|
|
|
|
yarn install
|
|
|
|
|
|
|
|
# Serve with hot reload at localhost:8080
|
|
|
|
yarn dev
|
|
|
|
|
|
|
|
# Build for production with minification
|
|
|
|
yarn build
|
|
|
|
|
|
|
|
# Build for production and view the bundle analyzer report
|
|
|
|
yarn build --report
|
|
|
|
```
|
2018-06-25 18:29:57 +02:00
|
|
|
|
2018-06-29 10:51:43 +02:00
|
|
|
#### Useful environment variables
|
2018-06-25 18:29:57 +02:00
|
|
|
|
2018-06-26 15:34:38 +02:00
|
|
|
You can pass a few environment variables to the `yarn build|dev` commands to
|
|
|
|
adapt the behavior to your needs.
|
|
|
|
|
|
|
|
* `PUBLIC_PATH=https://.../foobar` to serve the app from a subdirectory.
|
|
|
|
* `API_BASE_URL=https://...` to specify the location of the server (defaults
|
|
|
|
to `/`). The value should end with a trailing slash.
|
2018-07-17 16:32:34 +02:00
|
|
|
* `THUNDERFOREST_API_KEY=` to pass an API key server to use for
|
|
|
|
[Thunderforest](http://thunderforest.com/) tiles (OpenCycleMap, etc).
|
2018-07-18 15:30:30 +02:00
|
|
|
* `API_TOKEN=` to pass a token required to access the server side API (check
|
|
|
|
below in the server part environment variables for more details).
|
2018-06-26 15:34:38 +02:00
|
|
|
|
2018-07-11 01:51:26 +02:00
|
|
|
You should also have a look at the build variables under the `config/`
|
|
|
|
subdirectory.
|
|
|
|
|
2018-07-27 15:24:36 +02:00
|
|
|
#### Notes
|
|
|
|
|
|
|
|
We are using [A la carte](https://vuetifyjs.com/en/guides/a-la-carte) Vuetify
|
|
|
|
components to reduce the size of the build. Check that any extra components
|
|
|
|
you might use is indeed included in `src/vuetify.js` file. The `yarn
|
|
|
|
list-vuetify-components` command might be useful to help you determine which
|
|
|
|
components are used across the code.
|
|
|
|
|
2018-06-26 15:34:38 +02:00
|
|
|
|
2018-06-29 10:51:43 +02:00
|
|
|
### Server part
|
2018-06-26 15:34:38 +02:00
|
|
|
|
2018-06-29 10:51:43 +02:00
|
|
|
#### Build setup
|
2018-06-26 15:34:38 +02:00
|
|
|
|
|
|
|
``` bash
|
|
|
|
# Install Python dependencies
|
|
|
|
pip install -r requirements.txt
|
2018-06-25 18:29:57 +02:00
|
|
|
|
2018-06-26 15:34:38 +02:00
|
|
|
# Start the server
|
|
|
|
python -m server
|
2018-06-25 18:29:57 +02:00
|
|
|
```
|
|
|
|
|
2018-06-26 15:34:38 +02:00
|
|
|
It is better to use a dedicated `virtualenv` if you can :)
|
2018-06-25 18:29:57 +02:00
|
|
|
|
2018-07-31 17:04:06 +02:00
|
|
|
API routes are all listed within `server/routes.py` file, with documentation
|
|
|
|
strings.
|
|
|
|
|
2018-06-29 10:51:43 +02:00
|
|
|
#### Useful environment variables
|
2018-06-25 18:29:57 +02:00
|
|
|
|
2018-06-26 15:34:38 +02:00
|
|
|
You can pass a few environment variables to the `python -m server` command to
|
|
|
|
adapt its behavior:
|
|
|
|
|
|
|
|
* `HOST=` to specify the host to listen to (defaults to `127.0.0.1` which
|
|
|
|
means `localhost` only).
|
|
|
|
* `PORT=` to specify the port to listen on (defaults to `8081`).
|
2018-06-27 15:48:17 +02:00
|
|
|
* `DATABASE=` to specify a [database URL](http://docs.peewee-orm.com/en/latest/peewee/playhouse.html#db-url) to connect to (defaults to
|
|
|
|
`sqlite:///reports.db` which means a SQLite database named `reports.db` in
|
|
|
|
the current working directory).
|
2018-07-18 15:30:30 +02:00
|
|
|
* `API_TOKEN=` to specify a token required to `POST` data to the API.
|
2018-06-26 15:34:38 +02:00
|
|
|
|
2018-06-29 10:51:43 +02:00
|
|
|
#### Serving in production
|
2018-06-26 15:55:52 +02:00
|
|
|
|
|
|
|
You can use the `wsgi.py` script at the root of the git repository to serve
|
2018-07-11 16:58:50 +02:00
|
|
|
the server side part. You can find some `uwsgi` and `nginx` base config files
|
|
|
|
under the `support` folder.
|
2018-06-26 15:55:52 +02:00
|
|
|
|
2018-06-26 15:34:38 +02:00
|
|
|
|
|
|
|
## Contributing
|
|
|
|
|
|
|
|
The quickest way to get started is to simply run
|
|
|
|
|
|
|
|
```
|
|
|
|
API_BASE_URL=http://127.0.0.1:8081/ yarn dev
|
|
|
|
```
|
|
|
|
|
|
|
|
to spawn the client-side webapp, listening on `localhost:8080` and
|
2018-06-25 18:29:57 +02:00
|
|
|
|
|
|
|
```
|
2018-06-26 15:34:38 +02:00
|
|
|
python -m server
|
2018-06-25 18:29:57 +02:00
|
|
|
```
|
2018-06-26 15:34:38 +02:00
|
|
|
|
|
|
|
to spawn the server-side part, listening on `localhost:8081`.
|
|
|
|
|
|
|
|
|
2018-07-20 15:12:28 +02:00
|
|
|
## Translating
|
|
|
|
|
|
|
|
Translation is done directly on [Zanata](https://translate.zanata.org/iteration/view/cyclassist/master?dswid=7345).
|
|
|
|
|
|
|
|
To add new strings to localize, edit the `src/i18n/en.json` file with your new
|
|
|
|
strings (and only this file). Then, you can run `yarn push-locales` to send
|
|
|
|
the updated locales to translate and `yarn pull-locales` to fetch the
|
|
|
|
translated files. To use these scripts you will need the
|
2018-07-21 18:39:28 +02:00
|
|
|
Translate-toolkit(`pip install translate-toolkit`) and the [Zanata Python CLI
|
|
|
|
client](https://github.com/zanata/zanata-python-client).
|
2018-07-20 15:12:28 +02:00
|
|
|
|
|
|
|
|
2018-06-26 15:34:38 +02:00
|
|
|
## License
|
|
|
|
|
|
|
|
This software is licensed under an MIT license, unless explicitly mentionned
|
|
|
|
otherwise.
|
2018-06-30 22:54:38 +02:00
|
|
|
|
|
|
|
Icons are made from the original works:
|
|
|
|
* [Bike icon](https://commons.wikimedia.org/wiki/File:Ic_directions_bike_48px.svg)
|
|
|
|
licensed under CC BY on Wikimedia.
|
|
|
|
* [Car icon](https://commons.wikimedia.org/wiki/File:Car_icon_top.svg)
|
|
|
|
licensed under CC BY-SA on Wikimedia.
|
|
|
|
* [Pothole icon](https://commons.wikimedia.org/wiki/File:France_road_sign_A2a.svg)
|
|
|
|
licensed under CC BY-SA on Wikimedia.
|
|
|
|
* [Work icons](https://www.vecteezy.com/vector-art/87351-road-traffic-cartoon-icons-vector)
|
|
|
|
were designed by Vecteezy.
|
|
|
|
* [Trash icon](https://pixabay.com/en/trash-waste-trashcan-garbage-99257/) is
|
|
|
|
coming from Pixabay under CC0 license.
|
2018-07-10 15:19:24 +02:00
|
|
|
* [Accident icon](https://www.flaticon.com/free-icon/car-running-over-a-bicycle_91680) is
|
|
|
|
coming from Flaticon.
|
2018-07-20 15:12:28 +02:00
|
|
|
|
2018-07-30 23:08:10 +02:00
|
|
|
Beep sound is provided under CC0 license and coming from
|
|
|
|
[freesound.org](https://freesound.org/people/thisusernameis/sounds/426888/).
|
|
|
|
|
2018-07-20 15:12:28 +02:00
|
|
|
The map background is using tiles from <a
|
|
|
|
href=\"https://carto.com/location-data-services/basemaps/\">Carto.com</a> or
|
|
|
|
<a href=\"http://thunderforest.com/\">Thunderforest</a>, thanks to <a
|
|
|
|
href=\"https://www.openstreetmap.org/copyright\">OpenStreetMap
|
|
|
|
contributors</a> and <a href=\"http://leafletjs.com/\">Leaflet</a>.
|
|
|
|
|
|
|
|
Manual location picking uses the awesome API from <a
|
|
|
|
href=\"https://adresse.data.gouv.fr\">adresse.data.gouv.fr</a>.
|