Skip to content
This repository has been archived by the owner on Sep 28, 2022. It is now read-only.

Commit

Permalink
standardize/cleanup scaffold local.ini
Browse files Browse the repository at this point in the history
  • Loading branch information
jstoiko committed Aug 5, 2016
1 parent 0d789c4 commit e1b5f5e
Showing 1 changed file with 5 additions and 6 deletions.
11 changes: 5 additions & 6 deletions ramses/scaffolds/ramses_starter/local.ini_tmpl
Expand Up @@ -10,18 +10,17 @@ nefertari.engine = nefertari_{{engine}}
enable_get_tunneling = true

# SQLA
sqlalchemy.url = postgresql://localhost:5432/{{package}}
sqlalchemy.url = postgresql://%(host)s:5432/{{package}}

# MongoDB settings
mongodb.host = localhost
# MongoDB
mongodb.host = %(host)s
mongodb.port = 27017
mongodb.db = {{package}}

# Elasticsearch
elasticsearch.hosts = localhost:9200
elasticsearch.hosts = %(host)s:9200
elasticsearch.sniff = false
elasticsearch.index_name = {{package}}
elasticsearch.index.disable = false
elasticsearch.enable_refresh_query = false
elasticsearch.enable_aggregations = false
elasticsearch.enable_polymorphic_query = false
Expand All @@ -41,7 +40,7 @@ use = egg:Paste#urlmap

[server:main]
use = egg:waitress#main
host = 0.0.0.0
host = localhost
port = 6543
threads = 3

Expand Down

0 comments on commit e1b5f5e

Please sign in to comment.