diff options
| author | Fuwn <[email protected]> | 2021-03-29 13:32:04 -0700 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2021-03-29 13:32:04 -0700 |
| commit | e0074ab4cc3dec624717a48ad5e50ee2303e591e (patch) | |
| tree | 1d222af155c1c2d8c2983475424fceca8d70fef9 | |
| parent | feature: Use TOML as config instead of environment variables (diff) | |
| download | whirl-e0074ab4cc3dec624717a48ad5e50ee2303e591e.tar.xz whirl-e0074ab4cc3dec624717a48ad5e50ee2303e591e.zip | |
etc: Rename database file
| -rw-r--r-- | .gitignore | 4 | ||||
| -rw-r--r-- | src/main.rs | 2 | ||||
| -rw-r--r-- | whirl.db | bin | 0 -> 28672 bytes |
3 files changed, 3 insertions, 3 deletions
@@ -19,5 +19,5 @@ worlds.db whirl.toml # DB Browser -worlds.db-shm -worlds.db-wal +whirl.db-shm +whirl.db-wal diff --git a/src/main.rs b/src/main.rs index 88bc81c..3d9547a 100644 --- a/src/main.rs +++ b/src/main.rs @@ -16,7 +16,7 @@ async fn main() -> Result<(), Box<dyn Error>> { std::env::set_var("RUST_LOG", log_level); // Set database URL - std::env::set_var("DATABASE_URL", "sqlite:worlds.db"); + std::env::set_var("DATABASE_URL", "sqlite:whirl.db"); // Setup logging dotenv::dotenv().ok(); diff --git a/whirl.db b/whirl.db Binary files differnew file mode 100644 index 0000000..b3964cb --- /dev/null +++ b/whirl.db |