aboutsummaryrefslogtreecommitdiff
path: root/README.md
blob: ce4ba8d4e11acd6eaa8092cdd0267b47678f4d17 (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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
# Trains

Trains is a simple web app to display train timetables for stations on France SNCF's network. It queries the SNCF official api by default but will work with any compatible Navitia api implementation and present the results in a minimal web page that loads fast (unlike the official sites with all their images and ads).

StopAreas' Api queries are cached for 60 seconds so that someone refreshing your instance cannot simply DOS the api and exhaust your request quota, they would need to fetch different stations each time.

A personal instance runs at https://trains.adyxax.org/.

## Content

- [Dependencies](#dependencies)
- [Quick install](#quick-install)
- [Configuration](#configuration)
- [Usage](#usage)
- [Building](#building)
- [Design Choices](#design-choices)
- [References](#references)

## Dependencies

go is required. Only go version >= 1.17 on linux amd64 (Gentoo and Ubuntu 20.04) and on OpenBSD amd64 is being regularly tested.

## Quick Install

```
go install git.adyxax.org/adyxax/trains/cmd/trains-webui@latest
```

## Configuration

The default configuration file location is `$HOME/.config/trains/config.yaml`. It is a yaml configuration file that should look like the following :

```
address: 127.0.0.1
port: 8082
token: 12345678-9abc-def0-1234-56789abcdef0
```

`address` can be any ipv4 or ipv6 address or a hostname that resolves to such address and defaults to `127.0.0.1`. `port` can be any valid tcp port number or service name and defaults to `8080`.

You can get a free token from the [official SNCF's website](https://www.digital.sncf.com/startup/api/token-developpeur) for up to 5000 requests per day.

## Usage

Launching the webui server is as simple as :
```
trains-webui -c /path/to/config/file.yaml
```

The server will then listen for requests on the specified hostname and port until interrupted or killed.

Please consider running it behind a reverse proxy, with https. Also even though the static assets are embedded in the program's binary and can be served from there, consider serving the static assets directly from the web server acting as the reverse proxy or a cdn.

## Building

To run tests, use :
```
go test -cover ./...
```

For a debug build, use :
```
go build ./cmd/trains-webui/
```

For a release build, use :
```
go build -ldflags="-s -w" ./cmd/trains-webui/
```

To cross-compile for another os or architecture, use :
```
GOOS=openbsd GOARCH=amd64 go build -ldflags="-s -w" ./cmd/trains-webui/
```

## Design Choices

Being a small webapp, the following choices have been made :
- the only database supported for now is sqlite3
- Having no expectation of heavy traffic and for simplicity, the user sessions are currently stored in the database

## References

- https://www.digital.sncf.com/startup/api
- http://doc.navitia.io/