2
0
mirror of https://github.com/VinylDNS/vinyldns synced 2025-08-22 02:02:14 +00:00
Emerle, Ryan b24cf8db54
Updates
- Rename RecordSetData as RecordSetCache
- Refactoring
- Fix ip address storage to be binary instead of string
- Align recordset_data table contents with migration tooling
- Add feature flag for recordset cache `use-recordset-cache`
- Add feature flag for loading test data `load-test-data`
2022-05-13 13:31:37 -04:00

30 lines
1.0 KiB
Bash
Executable File

# General settings
VINYLDNS_API_URL=http://localhost:9000
VINYLDNS_PORTAL_URL=http://localhost:9001
# Portal settings
PORTAL_PORT=9001
PLAY_HTTP_SECRET_KEY=change-this-for-prod
VINYLDNS_BACKEND_URL=http://vinyldns-api:9000
# VINYLDNS_BACKEND_URL=http://host.docker.internal:9000 # You can use this when the API is running locally, but the portal is in a container
LDAP_PROVIDER_URL=ldap://vinyldns-ldap:19004
TEST_LOGIN=false
# API Settings
REST_PORT=9000
SQS_SERVICE_ENDPOINT=http://vinyldns-integration:19003
SNS_SERVICE_ENDPOINT=http://vinyldns-integration:19003
R53_SERVICE_ENDPOINT=http://vinyldns-integration:19003
DEFAULT_DNS_ADDRESS=vinyldns-integration:19001
USE_RECORDSET_CACHE=true
LOAD_TEST_DATA=true
# Database
MYSQL_ENDPOINT=vinyldns-integration:19002
JDBC_DRIVER=org.mariadb.jdbc.Driver
JDBC_URL=jdbc:mariadb://vinyldns-integration:19002/vinyldns?user=root&password=pass
JDBC_MIGRATION_URL=jdbc:mariadb://vinyldns-integration:19002/?user=root&password=pass
JDBC_USER=root
JDBC_PASSWORD=pass
FLYWAY_OUT_OF_ORDER=false