|
|
@@ -0,0 +1,45 @@ |
|
|
|
|
|
|
|
exports.development = { |
|
|
|
private: '../ljsthw-private/', |
|
|
|
testing_target: 'deployment/testing', |
|
|
|
build_target: 'deployment/production', |
|
|
|
deploy_target: '/mnt/www/share', |
|
|
|
fixtures: '__tests__/fixtures', |
|
|
|
gzip_filter: ['!index.html', '*.css', '*.js', '*.html', '*.svg', '*.json'], |
|
|
|
prod_server_wait: { |
|
|
|
resources: ['http://localhost:7778'], delay: 1000, timeout: 30000 |
|
|
|
}, |
|
|
|
db_repo_name: 'ljsthw-private', |
|
|
|
code_repo_name: 'learnjsthehardway', |
|
|
|
knex_env: 'development' |
|
|
|
} |
|
|
|
|
|
|
|
exports.staging = { |
|
|
|
private: '../ljsthw-private/', |
|
|
|
testing_target: 'deployment/testing', |
|
|
|
build_target: 'deployment/production', |
|
|
|
deploy_target: '/mnt/www/share', |
|
|
|
fixtures: '__tests__/fixtures', |
|
|
|
gzip_filter: ['!index.html', '*.css', '*.js', '*.html', '*.svg', '*.json'], |
|
|
|
prod_server_wait: { |
|
|
|
resources: ['http://localhost:7778'], delay: 1000, timeout: 30000 |
|
|
|
}, |
|
|
|
db_repo_name: 'ljsthw-private', |
|
|
|
code_repo_name: 'learnjsthehardway', |
|
|
|
knex_env: 'staging' |
|
|
|
} |
|
|
|
|
|
|
|
exports.production = { |
|
|
|
private: '../ljsthw-private/', |
|
|
|
testing_target: 'deployment/testing', |
|
|
|
build_target: 'deployment/production', |
|
|
|
deploy_target: '/mnt/www/share', |
|
|
|
fixtures: '__tests__/fixtures', |
|
|
|
gzip_filter: ['!index.html', '*.css', '*.js', '*.html', '*.svg', '*.json'], |
|
|
|
prod_server_wait: { |
|
|
|
resources: ['http://localhost:7778'], delay: 1000, timeout: 30000 |
|
|
|
}, |
|
|
|
db_repo_name: 'ljsthw-private', |
|
|
|
code_repo_name: 'learnjsthehardway', |
|
|
|
knex_env: 'production' |
|
|
|
} |