An open source online character sheet service for tabletop roleplaying games.
Go to file
projectmoon 912c949844 Run npm commands for building in build.rs 2021-01-03 14:07:11 +00:00
proto RPC-ify update attribute API. 2021-01-02 22:11:58 +00:00
src Move templates into src 2021-01-03 13:37:55 +00:00
static/scripts Move typescript stuff to static/scripts 2021-01-03 13:46:40 +00:00
.env Move migrations to refinery + barrel, enable 'offline' sqlx query checking 2020-12-31 14:11:28 +00:00
.gitignore Move typescript stuff to static/scripts 2021-01-03 13:46:40 +00:00
COPYING Add license. 2020-12-03 19:21:09 +00:00
Cargo.lock Experimenting with tonic 2021-01-02 22:32:17 +00:00
Cargo.toml Experimenting with tonic 2021-01-02 22:32:17 +00:00
LICENSE Add license. 2020-12-03 19:21:09 +00:00
README.md Update readme for SQLx. 2020-12-31 14:11:28 +00:00
Rocket.toml Serve templated templates with webpack-compiled JS injected. 2021-01-03 13:36:53 +00:00
build.rs Run npm commands for building in build.rs 2021-01-03 14:07:11 +00:00
diesel.toml Switch character data type to an enum, including schema patch. 2020-12-08 22:28:27 +00:00
package-lock.json Serve templated templates with webpack-compiled JS injected. 2021-01-03 13:36:53 +00:00
package.json Run npm commands for building in build.rs 2021-01-03 14:07:11 +00:00
rust-toolchain Migrate to Rocket 0.5. 2020-12-13 21:58:39 +00:00
sqlx-data.json Move migrations to refinery + barrel, enable 'offline' sqlx query checking 2020-12-31 14:11:28 +00:00

README.md

Tenebrous Sheets

An open source character sheet service for tabletop roleplaying games.

Currently under heavy development.

Build Instructions

These are very basic build instructions. They assume you already have cargo set up and installed.

Install Dependencies

Install dependencies. The exact method depends on your OS.

  • sqlite3 and development headers (Void Linux: xbps-install sqlite sqlite-devel, Ubuntu: apt install sqlite3 libsqlite3-dev).
  • protoc: protocol buffers compiler. There is one baked into the build, so you should not need this unless you are not using Linux/Mac/Windows.

Initial Setup

Follow these instructions from the root of the repository.

Set up database:

cargo install --version=0.2.0 sqlx-cli
cargo run --bin tenebrous-migrate

Run Application

If you are using rustup, then it should automatically switch to the stable version of Rust in this repository. This is because of the rust-toolchain file.

Command line "instructions" to build and run the application:

cargo run

The sqlite database is created in the directory cargo run was invoked from by default. You can also pass a path to a different location as a single argument to the program.

Development

Development instructions.

To set up a local database, or run migrations, run:

cargo run --bin tenebrous-migrate

Database Queries and Migrations

When adding/updating a compile-checked query or a migration, you need to update the SQLx data JSON file:

cargo sqlx prepare -- --bin tenebrous