You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- 🌍 World map view of all visited airports and trajectories of flights
23
+
- 🌍 World map view of all your flights
28
24
- 📊 Statistics for all your flights
29
25
- 📱 Responsive design
30
-
- 👨💻 Sleek and intuitive UI
31
-
- ✅ Effortlessly add, edit, and delete past flights
32
-
- 💾 Ability to import from CSV, MyFlightRadar24
33
-
- 💾 Ability to export to CSV, iCal
34
-
35
-
## Installation
36
-
37
-
### Docker (recommended)
38
-
39
-
Use the sample `docker-compose.yml` from the repo or make your own.
40
-
Make sure to add a volume from your data path to `/data`, and remember that the application in the container runs on port `3000`.
41
-
42
-
**Note**: Please make sure that the volume you are binding to the container has appropriate ownership, otherwise it won't start.
43
-
To do this, you can either create the folder to be used as volume before running the container for the first time, or let docker
44
-
create it first and then set its ownership manually by running `sudo chown -R 1000:1000 /path/to/volume/folder` (you can change
45
-
`1000:1000` to whatever your user and group IDs are).
46
-
47
-
**Non-stable releases**: You can pull the image with the `:experimental` tag to gain access to the latest features which have not been thoroughly tested yet.
Visit the [usage wiki](https://github.com/pbogre/jetlog/wiki/Usage) for details on all the features of Jetlog
30
+
31
+
## Getting Started
32
+
33
+
Here's a sample `docker-compose.yml` to get started
34
+
```yml
35
+
services:
36
+
jetlog:
37
+
image: pbogre/jetlog:latest
38
+
volumes:
39
+
- /your/data/path:/data
40
+
restart: unless-stopped
41
+
ports:
42
+
- 3000:3000
119
43
```
120
44
121
-
1. Go to `Jetlog > Settings > Import`
122
-
2. Upload your CSV in the `Custom CSV` section and press `Import`
123
-
3. Check your logs for progress
45
+
For details about troubleshooting, environment variables, and more installation options, have a look at the [installation wiki](https://github.com/pbogre/jetlog/wiki/Installation)
46
+
47
+
## Importing & Exporting
48
+
49
+
You can currently import from the following formats
50
+
51
+
- MyFlightRadar24
52
+
- Custom CSV
124
53
125
-
## API documentation
54
+
You can currently export to the following formats
126
55
127
-
You can make use of the automatically generated docs (thanks to FastAPI) by going to `http://<your-ip>:<your-port>/docs`.
56
+
- CSV
57
+
- iCal
58
+
59
+
For details on how to import your data, have a look at the [importing wiki](https://github.com/pbogre/jetlog/wiki/Importing)
60
+
61
+
## Contributing
62
+
63
+
If you would like to contribute to this project by opening an issue or a pull request,
0 commit comments