Rename config.yaml to config.yml

This commit is contained in:
Andras Schmelczer 2025-01-05 11:33:05 +00:00
parent 55f92398c4
commit d91da39884
No known key found for this signature in database
GPG key ID: FC8F2C3D3D1A718C
2 changed files with 2 additions and 2 deletions

2
.gitignore vendored
View file

@ -14,7 +14,7 @@ backend/target
plugin/build
backend/db.sqlite3*
backend/config.yaml
backend/config.yml
*.log

View file

@ -1,4 +1,4 @@
pub const CONFIG_PATH: &str = "config.yaml";
pub const CONFIG_PATH: &str = "config.yml";
pub const DEFAULT_SQLITE_URL: &str = "db.sqlite3";
pub const DEFAULT_HOST: &str = "127.0.0.1";
pub const DEFAULT_PORT: u16 = 3000;