Bar chart
This commit is contained in:
21
config/action_mailer.yml
Normal file
21
config/action_mailer.yml
Normal file
@@ -0,0 +1,21 @@
|
||||
default: &default
|
||||
default_options:
|
||||
from: codeocean@hpi.de
|
||||
delivery_method: :smtp
|
||||
|
||||
development:
|
||||
<<: *default
|
||||
default_url_options:
|
||||
host: localhost
|
||||
|
||||
production:
|
||||
<<: *default
|
||||
default_url_options:
|
||||
host: CHANGE_ME
|
||||
|
||||
test:
|
||||
<<: *default
|
||||
default_url_options:
|
||||
host: localhost
|
||||
port: 3000
|
||||
delivery_method: :test
|
19
config/code_ocean.yml
Normal file
19
config/code_ocean.yml
Normal file
@@ -0,0 +1,19 @@
|
||||
default: &default
|
||||
flowr:
|
||||
enabled: false
|
||||
code_pilot:
|
||||
enabled: false
|
||||
|
||||
development:
|
||||
flowr:
|
||||
enabled: true
|
||||
url: http://example.org:3000/api/exceptioninfo?id=&lang=auto
|
||||
code_pilot:
|
||||
enabled: false
|
||||
url: //localhost:3000
|
||||
|
||||
production:
|
||||
<<: *default
|
||||
|
||||
test:
|
||||
<<: *default
|
18
config/database.yml
Normal file
18
config/database.yml
Normal file
@@ -0,0 +1,18 @@
|
||||
default: &default
|
||||
adapter: postgresql
|
||||
encoding: unicode
|
||||
password:
|
||||
pool: 16
|
||||
username: postgres
|
||||
|
||||
development:
|
||||
<<: *default
|
||||
database: code_ocean_development
|
||||
|
||||
production:
|
||||
<<: *default
|
||||
database: code_ocean_production
|
||||
|
||||
test:
|
||||
<<: *default
|
||||
database: code_ocean_test
|
22
config/secrets.yml
Normal file
22
config/secrets.yml
Normal file
@@ -0,0 +1,22 @@
|
||||
# Be sure to restart your server when you modify this file.
|
||||
|
||||
# Your secret key is used for verifying the integrity of signed cookies.
|
||||
# If you change this key, all old signed cookies will become invalid!
|
||||
|
||||
# Make sure the secret is at least 30 characters and all random,
|
||||
# no regular words or you'll be exposed to dictionary attacks.
|
||||
# You can use `rake secret` to generate a secure secret key.
|
||||
|
||||
# Make sure the secrets in this file are kept private
|
||||
# if you're sharing your code publicly.
|
||||
|
||||
development:
|
||||
secret_key_base: CHANGE_ME
|
||||
|
||||
test:
|
||||
secret_key_base: CHANGE_ME
|
||||
|
||||
# Do not keep production secrets in the repository,
|
||||
# instead read values from the environment.
|
||||
production:
|
||||
secret_key_base: CHANGE_ME
|
11
config/sendmail.yml
Normal file
11
config/sendmail.yml
Normal file
@@ -0,0 +1,11 @@
|
||||
default: &default
|
||||
arguments: CHANGE_ME
|
||||
|
||||
development:
|
||||
<<: *default
|
||||
|
||||
production:
|
||||
<<: *default
|
||||
|
||||
test:
|
||||
<<: *default
|
14
config/smtp.yml
Normal file
14
config/smtp.yml
Normal file
@@ -0,0 +1,14 @@
|
||||
default: &default
|
||||
address: CHANGE_ME
|
||||
password: CHANGE_ME
|
||||
port: CHANGE_ME
|
||||
user_name: CHANGE_ME
|
||||
|
||||
development:
|
||||
<<: *default
|
||||
|
||||
production:
|
||||
<<: *default
|
||||
|
||||
test:
|
||||
<<: *default
|
Reference in New Issue
Block a user