20 lines
637 B
YAML
20 lines
637 B
YAML
development:
|
|
email: admin@example.com
|
|
password: password
|
|
nickname: admin
|
|
public_name: Just Admin
|
|
biography: I am creator of the website you read this text on.
|
|
|
|
staging:
|
|
email: admin@example.com
|
|
password: password
|
|
nickname: admin
|
|
public_name: Just Admin
|
|
biography: I am creator of the website you read this text on.
|
|
|
|
production:
|
|
email: <%= Rails.application.credentials.superuser_email %>
|
|
password: <%= Rails.application.credentials.superuser_password %>
|
|
nickname: kotovalexarian
|
|
public_name: Alex Kotov
|
|
biography: I am creator of the website you read this text on.
|