demos.tf frontend
  • Rust 42.8%
  • TypeScript 42.1%
  • CSS 13.2%
  • JavaScript 1%
  • Nix 0.9%
Find a file
2024-12-02 23:27:20 +01:00
.github/workflows flake rework 2024-11-21 15:03:38 +01:00
.sqlx flake rework 2024-11-21 15:03:38 +01:00
build style fixes 2024-12-01 15:05:31 +01:00
images keyboard shortcut help 2024-12-01 14:51:40 +01:00
nix flake cleanup 2024-11-24 20:52:08 +01:00
script make esc close modals 2024-12-02 23:27:20 +01:00
src re-add deleted demo warning 2024-11-30 00:32:50 +01:00
style modal css fixes 2024-12-02 23:27:12 +01:00
.envrc init repo 2023-04-05 19:55:09 +02:00
.gitignore swc updates 2024-06-07 22:47:28 +02:00
build.rs style fixes 2024-12-01 15:05:31 +01:00
Cargo.lock style fixes 2024-12-01 15:05:31 +01:00
Cargo.toml fix sync 2024-11-22 22:17:21 +01:00
docker.nix flake rework 2024-11-21 15:03:38 +01:00
flake.lock flake updates 2024-12-02 23:10:29 +01:00
flake.nix flake updates 2024-12-02 23:10:29 +01:00
package-lock.json keyboard shortcut help 2024-12-01 14:51:40 +01:00
package.json keyboard shortcut help 2024-12-01 14:51:40 +01:00
README.md flake rework 2024-11-21 15:03:38 +01:00
rust-toolchain.toml flake rework 2024-11-21 15:03:38 +01:00

demos.tf

CI

Frontend code for demos.tf, see also the api code for the api backend.

Docker image

A prebuild docker image exist in the docker hub.

Building

Rust and npm are required to build the project.

Using nix

For systems with nix, a flake is provided to ease building, simply running

nix build .#frontend

will build the entire project.

Without nix

If you don't have make available you can build the project without it.

npm ci
cargo b --release

Running

Once build, the binary can be run with

frontend <path to config.toml>

Configuration

[listen]
# ip and port to listen on
address = "127.0.0.1"
port = 7001
# or alternativelly, a socket to listen on
# path = "/run/frontend.sock"

[site]
# where this site can be found
url = "http://example.com/"
# url of the api server (https://github.com/demostf/api), defaults to "https://api.demos.tf/"
api = "https://api.example.com/"
# url of the map data server (https://github.com/demostf/maps), defaults to "https://maps.demos.tf/"
maps = "https://maps.example.com/"

[database]
hostname = "db.example.com"
username = "demostf"
password = "XXXXXXXXXX"

Alternatively, the configuration can be proved as environment variables in the form of ${SECTION}_${ITEM} (e.g. LISTEN_ADDRESS=127.0.0.1)