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 /src | |
| parent | feature: Use TOML as config instead of environment variables (diff) | |
| download | whirl-e0074ab4cc3dec624717a48ad5e50ee2303e591e.tar.xz whirl-e0074ab4cc3dec624717a48ad5e50ee2303e591e.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(); |