Sha256: c976ecfc14b81394e72219bb4056ee77546e1031bf08d134b757108da4c6d351
Contents?: true
Size: 903 Bytes
Versions: 18
Compression:
Stored size: 903 Bytes
Contents
# Jets::Config.project_namespace is special value results in using the project namespace. Example : # table_namespace: <%= Jets.config.project_namespace %> # This is the default value. development: table_namespace: <%= Jets.config.table_namespace %> # More examples: # table_namespace: demo-dev endpoint: http://localhost:8000 # comment out if want to test with real dynamodb # on AWS. You can also set the DYNAMODB_ENDPOINT environment variable. # You can also are actually deploying a development environment is to # change bin/server and export DYNAMODB_ENDPOINT=http://localhost:8000 at the top # there. test: # table_namespace: proj # do not include the env endpoint: http://localhost:8000 table_namespace: <%= Jets.config.table_namespace %> staging: table_namespace: <%= Jets.config.table_namespace %> production: table_namespace: <%= Jets.config.table_namespace %>
Version data entries
18 entries across 18 versions & 1 rubygems