Skip to content

Commit 493955a

Browse files
author
Sandro Santilli
committed
Fix syntax of new directives
1 parent 6ebeed0 commit 493955a

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

config/environments/development.js.example

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ module.exports.db_base_name = 'cartodb_dev_user_<%= user_id %>_db';
88
// Supported labels: 'user_id' (read from redis)
99
module.exports.db_user = 'development_cartodb_user_<%= user_id %>';
1010
// Supported labels: 'user_id', 'user_password' (both read from redis)
11-
module.exports.db_user_pass: '<%= user_password %>'
11+
module.exports.db_user_pass = '<%= user_password %>'
1212
// Name of the anonymous PostgreSQL user
1313
module.exports.db_pubuser = 'publicuser';
1414
// Password for the anonymous PostgreSQL user

config/environments/production.js.example

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ module.exports.db_base_name = 'cartodb_user_<%= user_id %>_db';
99
// Supported labels: 'user_id' (read from redis)
1010
module.exports.db_user = 'cartodb_user_<%= user_id %>';
1111
// Supported labels: 'user_id', 'user_password' (both read from redis)
12-
module.exports.db_user_pass: '<%= user_password %>'
12+
module.exports.db_user_pass = '<%= user_password %>'
1313
// Name of the anonymous PostgreSQL user
1414
module.exports.db_pubuser = 'publicuser';
1515
// Password for the anonymous PostgreSQL user

config/environments/staging.js.example

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ module.exports.db_base_name = 'cartodb_staging_user_<%= user_id %>_db';
99
// Supported labels: 'user_id' (read from redis)
1010
module.exports.db_user = 'cartodb_staging_user_<%= user_id %>';
1111
// Supported labels: 'user_id', 'user_password' (both read from redis)
12-
module.exports.db_user_pass: '<%= user_password %>'
12+
module.exports.db_user_pass = '<%= user_password %>'
1313
// Name of the anonymous PostgreSQL user
1414
module.exports.db_pubuser = 'publicuser';
1515
// Password for the anonymous PostgreSQL user

0 commit comments

Comments
 (0)