-
Notifications
You must be signed in to change notification settings - Fork 1
/
cookiecutter.json
38 lines (38 loc) · 1.23 KB
/
cookiecutter.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
{
"directory_name": "Chewie-NS",
"flask_app_local_port": "5000",
"flask_email": "[email protected]",
"flask_email_password": "testing_ns",
"flask_email_default_sender": "[email protected]",
"flask_email_server": "localhost",
"flask_email_port": 8025,
"flask_email_use_tls": 0,
"flask_email_use_ssl": 1,
"base_url": "http://127.0.0.1:5000/NS/api/",
"postgres_local_port": "54320",
"pgadmin_email": "[email protected]",
"pgadmin_password": "testpassword",
"pgadmin_local_port": "5050",
"virtuoso_local_port": "8890",
"virtuoso_isql_local_port": "1111",
"redis_local_port": "6379",
"flower_local_port": "5555",
"gunicorn_workers": 4,
"gunicorn_threads": 2,
"local_schema_stats_url": "https://127.0.0.1/stats",
"local_register_url": "https://127.0.0.1/register",
"api_url": "https://127.0.0.1/NS/api/docs",
"local_species_url": "https://127.0.0.1/species/",
"server_name": "_",
"_copy_without_render": [
"*app",
"*virtuoso_data",
"*redis_data",
"*docs",
"*frontend_react/chewie_ns/public",
"*frontend_react/chewie_ns/src/containers",
"*frontend_react/chewie_ns/src/hoc",
"*frontend_react/chewie_ns/src/store/reducers",
"*frontend_react/chewie_ns/src/store/utility.js"
]
}