-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #20 from mconf/fix-qol-dev
Fix qol dev
- Loading branch information
Showing
26 changed files
with
188 additions
and
286 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
RAILS_ENV=development | ||
|
||
# Database configurations | ||
MCONF_DATABASE_DEV_HOST=dev_db | ||
MCONF_DATABASE_DEV_NAME=mconf_web_dev | ||
MCONF_DATABASE_DEV_USERNAME=mconf | ||
MCONF_DATABASE_DEV_PASSWORD=mconf | ||
|
||
# Redis | ||
MCONF_REDIS_HOST=dev_redis | ||
MCONF_REDIS_PASSWORD=XYqZihWYGeAIOZo2VN2LcNJxC2R4UcQE | ||
# MCONF_REDIS_PORT='6379' | ||
# MCONF_REDIS_DB='0' |
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
MCONF_DATABASE_PROD_ADAPTER='mysql2' | ||
MCONF_DATABASE_PROD='mconf_web_production' | ||
MCONF_DATABASE_PROD_USERNAME='root' | ||
MCONF_DATABASE_PROD_PASSWORD='' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
RAILS_ENV=test | ||
|
||
MCONF_DATABASE_TEST_HOST=test_db | ||
MCONF_DATABASE_TEST_NAME=mconf_web_ufrgs_test | ||
MCONF_DATABASE_TEST_USERNAME=mconf | ||
MCONF_DATABASE_TEST_PASSWORD=mconf | ||
|
||
MCONF_REDIS_HOST=test_redis | ||
MCONF_REDIS_PASSWORD=XYqZihWYGeAIOZo2VN2LcNJxC2R4UcQE |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
MCONF_DATABASE_ADAPTER='mysql2' | ||
MCONF_DATABASE='mconf_test' | ||
MCONF_DATABASE_USERNAME='travis' | ||
MCONF_DATABASE_PASSWORD='' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
# MySQL (default setup). Versions 4.1 and 5.0 are recommended. | ||
|
||
development: | ||
adapter: <%= ENV['MCONF_DATABASE_DEV_ADAPTER'] || 'mysql2' %> | ||
host: <%= ENV['MCONF_DATABASE_DEV_HOST'] || '127.0.0.1' %> | ||
database: <%= ENV['MCONF_DATABASE_DEV_NAME'] || 'mconf_web_dev' %> | ||
username: <%= ENV['MCONF_DATABASE_DEV_USERNAME'] %> | ||
password: <%= ENV['MCONF_DATABASE_DEV_PASSWORD'] %> | ||
socket: <%= ENV['MCONF_DATABASE_DEV_SOCKET'] || '/var/run/mysqld/mysqld.sock' %> | ||
|
||
test: | ||
adapter: <%= ENV['MCONF_DATABASE_TEST_ADAPTER'] || 'mysql2' %> | ||
host: <%= ENV['MCONF_DATABASE_TEST_HOST'] || '127.0.0.1' %> | ||
database: <%= ENV['MCONF_DATABASE_TEST_NAME'] || 'mconf_web_ufrgs_test' %> | ||
username: <%= ENV['MCONF_DATABASE_TEST_USERNAME'] %> | ||
password: <%= ENV['MCONF_DATABASE_TEST_PASSWORD'] %> | ||
socket: <%= ENV['MCONF_DATABASE_TEST_SOCKET'] || '/var/run/mysqld/mysqld.sock' %> | ||
|
||
production: | ||
adapter: <%= ENV['MCONF_DATABASE_PROD_ADAPTER'] || 'mysql2' %> | ||
host: <%= ENV['MCONF_DATABASE_PROD_HOST'] || '127.0.0.1' %> | ||
database: <%= ENV['MCONF_DATABASE_PROD_NAME'] || 'mconf_web_production' %> | ||
username: <%= ENV['MCONF_DATABASE_PROD_USERNAME'] %> | ||
password: <%= ENV['MCONF_DATABASE_PROD_PASSWORD'] %> | ||
socket: <%= ENV['MCONF_DATABASE_PROD_SOCKET'] || '/var/run/mysqld/mysqld.sock' %> |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
|
||
# | ||
# This file is used to seed the database after it is created | ||
# (by `rake db:reset` or `rake db:seed`). | ||
# | ||
|
||
# The first admin you will use to login and setup the application. | ||
admin: | ||
username: "admin" | ||
email: "fake-email@mconf.org" | ||
password: "admin" | ||
|
||
# The first, only and default Site model with general configurations for the website. | ||
# You can add here any attribute available in the model Site. | ||
site: | ||
name: "Mconf Dev" | ||
description: "Mconf Development Website" | ||
domain: "localhost:3000" | ||
smtp_login: "" | ||
smtp_password: "" | ||
smtp_server: "" | ||
smtp_domain: "localhost" | ||
smtp_sender: "fake-email@mconf.org" | ||
smtp_use_tls: false | ||
smtp_auto_tls: false | ||
smtp_auth_type: "" | ||
smtp_port: 1025 | ||
|
||
# The first and default webconference server. | ||
webconf_server: | ||
name: "Default Server" | ||
url: "http://test-install.blindsidenetworks.com/bigbluebutton/api" | ||
secret: "8cd8ef52e8e101574e400365b55e11a6" |
Oops, something went wrong.