blob: c2f52d8d025b5e447716448065ed3fcff1301a75 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
|
Fietsboek
=========
Fietsboek is a self-hostable sharing site for GPX track recordings with social
features. The goal is to have an application like [MyTourbook][MyTourbook] that
runs as a web-service and allows sharing and discovering of new tracks.
Note that Fietsboek is early in development and a hobby project, as such many
features are still lacking.
[MyTourbook]: https://mytourbook.sourceforge.io/mytourbook/
Installation
------------
Setup instructions are in the documentation. You can either build it locally
using [Sphinx](https://www.sphinx-doc.org/), or view the generated version
online: https://docs.fietsboek.org/
([mirror](https://fietsboek.readthedocs.io/)).
Development
-----------
- Setup the environment:
virtualenv .venv
.venv/bin/pip install -e '.[testing]'
- Adjust `development.ini` to your needs
- Initialize the database:
.venv/bin/alembic -c development.ini upgrade head
- Serve the code:
.venv/bin/pserve development.ini --reload
- Hack away!
License
-------
Fietsboek, the GPX web sharing project
Copyright (C) 2022 Daniel Schadt
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU Affero General Public License for more details.
You should have received a copy of the GNU Affero General Public License
along with this program. If not, see <https://www.gnu.org/licenses/>.
|