Removed Bootstrap and converted to scss
This commit is contained in:
+18
-25
@@ -16,23 +16,14 @@
|
||||
#
|
||||
development:
|
||||
adapter: postgresql
|
||||
encoding: unicode
|
||||
database: <%= ENV['STARTER_APP_DEV_DB_DATABASE'] || 'starterapp_development' %>
|
||||
encoding: utf8
|
||||
database: bike_bike_dev
|
||||
username: bike_bike
|
||||
password: NewOrleans@)!#
|
||||
host: 127.0.0.1
|
||||
port: 5433
|
||||
pool: 5
|
||||
username: <%= ENV['STARTER_APP_DEV_DB_USER'] || 'postgres' %>
|
||||
password: <%= ENV['STARTER_APP_DEV_DB_PASSWORD'] %>
|
||||
|
||||
# Connect on a TCP socket. Omitted by default since the client uses a
|
||||
# domain socket that doesn't need configuration. Windows does not have
|
||||
# domain sockets, so uncomment these lines.
|
||||
host: <%= ENV['STARTER_APP_DEV_DB_HOST'] || 'localhost' %>
|
||||
|
||||
# The TCP port the server listens on. Defaults to 5432.
|
||||
# If your server runs on a different port number, change accordingly.
|
||||
port: <%= ENV['STARTER_APP_DEV_DB_PORT'] || '5432' %>
|
||||
|
||||
# Schema search path. The server defaults to $user,public
|
||||
#schema_search_path: myapp,sharedapp,public
|
||||
|
||||
# Minimum log levels, in increasing order:
|
||||
# debug5, debug4, debug3, debug2, debug1,
|
||||
@@ -45,18 +36,20 @@ development:
|
||||
# Do not set this db to the same as development or production.
|
||||
test:
|
||||
adapter: postgresql
|
||||
encoding: unicode
|
||||
database: <%= ENV['STARTER_APP_TEST_DB_DATABASE'] || 'starterapp_test' %>
|
||||
encoding: utf8
|
||||
database: bike_bike_test
|
||||
username: bike_bike
|
||||
password: NewOrleans@)!#
|
||||
host: 127.0.0.1
|
||||
port: 5433
|
||||
pool: 5
|
||||
username: <%= ENV['STARTER_APP_TEST_DB_USER'] || 'postgres' %>
|
||||
password: <%= ENV['STARTER_APP_TEST_DB_PASSWORD'] %>
|
||||
host: <%= ENV['STARTER_APP_TEST_DB_HOST'] || 'localhost' %>
|
||||
port: <%= ENV['STARTER_APP_TEST_DB_PORT'] || '5432' %>
|
||||
|
||||
production:
|
||||
adapter: postgresql
|
||||
encoding: unicode
|
||||
database: starterapp_production
|
||||
encoding: utf8
|
||||
database: bike_bike
|
||||
username: bike_bike
|
||||
password: NewOrleans@)!#
|
||||
host: 127.0.0.1
|
||||
port: 5433
|
||||
pool: 5
|
||||
username: postgres
|
||||
password:
|
||||
|
||||
Reference in New Issue
Block a user