diff options
| author | Fuwn <[email protected]> | 2021-03-29 13:32:04 +0000 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2021-03-29 13:32:04 +0000 |
| commit | 35bb0eb06f2b7d9b44ec41b4a23e715ad65169b7 (patch) | |
| tree | cde9dfe55db0160f80c461bce0566759af0384b5 /src | |
| parent | feature: Use TOML as config instead of environment variables (diff) | |
| download | whirl-35bb0eb06f2b7d9b44ec41b4a23e715ad65169b7.tar.xz whirl-35bb0eb06f2b7d9b44ec41b4a23e715ad65169b7.zip | |
etc: Rename database file
Diffstat (limited to 'src')
| -rw-r--r-- | src/main.rs | 2 |
1 files changed, 1 insertions, 1 deletions
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(); |