Skip to content

Instantly share code, notes, and snippets.

@yammmt
Last active April 19, 2020 12:19
Show Gist options
  • Save yammmt/8cd1459f32d14a68391d27455955877d to your computer and use it in GitHub Desktop.
Save yammmt/8cd1459f32d14a68391d27455955877d to your computer and use it in GitHub Desktop.
Change DB filename according to Rocket environment
[global]
template_dir = "static"
# equivalent to
# [global.databases.sqlite_database]
# url = "db/db.sqlite"
[development]
databases = { sqlite_database = {url = "db/dev.sqlite" } }
[staging]
databases = { sqlite_database = {url = "db/staging.sqlite" } }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment