Initial commit

This commit is contained in:
2020-06-02 23:02:01 -04:00
commit a1ade51f6b
15 changed files with 294 additions and 0 deletions

17
config/database.yml Normal file
View File

@@ -0,0 +1,17 @@
development:
adapter: sqlite3
database: db/development.sqlite3
pool: 5
timeout: 5000
test:
adapter: sqlite3
database: db/test.sqlite3
pool: 5
timeout: 5000
production:
adapter: sqlite3
database: db/production.sqlite3
pool: 5
timeout: 5000