Simracing Sports League Organization https://www.sslo.net
Find a file
2025-12-17 19:22:53 +01:00
doc create first preset parameters 2025-12-16 23:16:11 +01:00
rsc create first preset parameters 2025-12-16 23:16:11 +01:00
sslo_league adding DNF parameter to preset 2025-12-17 19:22:53 +01:00
sslo_lib create first preset parameters 2025-12-16 23:16:11 +01:00
sslo_lib_derive testing db/content/cars 2025-08-07 23:37:13 +02:00
sslo_lobby adopt lobby to new HtmlImage 2025-11-19 16:44:37 +01:00
sslo_packager install tracks 2025-08-05 22:21:58 +02:00
.gitignore ignore .idea/* 2025-03-26 22:35:30 +01:00
Cargo.lock show modal dialog to derive presets 2025-12-04 22:22:30 +01:00
Cargo.toml implement reusable functions for database row trait 2025-07-25 21:59:41 +02:00
LICENSE Initial commit 2025-08-20 19:57:13 +02:00
README.md catch situation where sll file could not be read 2025-04-02 20:13:43 +02:00

sslo

Simracing Sports League Organization

Building

  1. git clone <path_to_sslo_repo>
  2. cd sslo
  3. cargo build

Preparing Database

For execution, sslo needs a directory where all data is stored into (and read from). This directory is called the database - despite from the fact that the database directory contains sqlite database files.

Currently the datbase directory needs to be setup manually (there is no installer yet available). These are the instructions:

  1. create an empty directory somewhere (eg. path/to/sources/of/sslo/../sslo_test_db/ )
  2. create TLS certificates
    -> for localhost-testing self-signed is sufficient
    1. mkdir sslo_test_db/tls/
    2. cd sslo_test_db/tls/
    3. openssl req -x509 -newkey rsa:4096 -keyout key.pem -out cert.pem -sha256 -days 365 -nodes
  3. copy sslo/doc/sslo_league.toml to sslo_test_db/sslo_league.toml
  4. adjust sslo_league.toml to fit your needs
    -> especially the smtp section needs attention, since currently you need a third-party SMTP provider

Executing SSLO League

  1. cd path/to/sources/of/sslo/
  2. cd sslo_league/
  3. cargo run -- ../../sslo_test_db/sslo_league.toml
  4. open your browser at http://localhost:8080
    (or wahtever port you specified in the .toml config file)
  5. You should now be redirected to https://localhost:*** -> accept your self-signed certificate