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
And then run `cargo run` twice. The first time to generate the `config.toml` file and the second time to run the tracker with the default configuration.
48
+
And then run `cargo run` twice. The first time to generate the `tracker.toml` file and the second time to run the tracker with the default configuration.
49
49
50
50
After running the tracker these services will be available:
51
51
@@ -78,3 +78,5 @@ The project is licensed under a dual license. See [COPYRIGHT](./COPYRIGHT).
78
78
## Acknowledgments
79
79
80
80
This project was a joint effort by [Nautilus Cyberneering GmbH](https://nautilus-cyberneering.de/) and [Dutch Bits](https://dutchbits.nl). Also thanks to [Naim A.](https://github.com/naim94a/udpt) and [greatest-ape](https://github.com/greatest-ape/aquatic) for some parts of the code. Further added features and functions thanks to [Power2All](https://github.com/power2all).
- Create the SQLite DB (`data.db`) if you are going to use SQLite.
77
-
- Create the configuration file (`config.toml`) before running the tracker.
77
+
- Create the configuration file (`tracker.toml`) before running the tracker.
78
78
- Replace the user UID (`1000`) with yours.
79
79
80
80
> NOTICE: that the `./bin/install.sh` can setup the application for you. But it
81
81
uses a predefined configuration.
82
82
83
83
Remember to switch to your default docker context `docker context use default`
84
-
and to change the API default configuration in `config.toml` to make it
84
+
and to change the API default configuration in `tracker.toml` to make it
85
85
available from the host machine:
86
86
87
87
```toml
@@ -91,7 +91,7 @@ bind_address = "0.0.0.0:1212"
91
91
92
92
### With docker-compose
93
93
94
-
The docker-compose configuration includes the MySQL service configuration. If you want to use MySQL instead of SQLite you have to change your `config.toml` configuration:
94
+
The docker-compose configuration includes the MySQL service configuration. If you want to use MySQL instead of SQLite you have to change your `tracker.toml` configuration:
95
95
96
96
```toml
97
97
db_driver = "MySQL"
@@ -170,7 +170,7 @@ If the database, user or permissions are not created the reason could be the MyS
170
170
171
171
### SSL Certificates
172
172
173
-
You can use a certificate for localhost. You can create your [localhost certificate](https://letsencrypt.org/docs/certificates-for-localhost/#making-and-trusting-your-own-certificates) and use it in the `storage` folder and the configuration file (`config.toml`). For example:
173
+
You can use a certificate for localhost. You can create your [localhost certificate](https://letsencrypt.org/docs/certificates-for-localhost/#making-and-trusting-your-own-certificates) and use it in the `storage` folder and the configuration file (`tracker.toml`). For example:
174
174
175
175
The storage folder must contain your certificates:
176
176
@@ -184,7 +184,7 @@ storage/
184
184
└── localhost.key
185
185
```
186
186
187
-
You have not enabled it in your `config.toml` file:
187
+
You have not enabled it in your `tracker.toml` file:
0 commit comments