457c532b2b
* feat(server): allow ratelimiting to be explicitly disabled - allows rate limiter to be enabled or disabled explicitly - example .env file for testing now explicitly disables it - disables rate limiter in CI tests, except where explicitly testing the rate limiter
11 lines
346 B
Bash
11 lines
346 B
Bash
###############################################
|
|
# Env overrides when running app in test mode #
|
|
###############################################
|
|
|
|
PORT=0
|
|
POSTGRES_URL=postgres://speckle:speckle@127.0.0.1/speckle2_test
|
|
POSTGRES_USER=''
|
|
MULTI_REGION_CONFIG_PATH="multiregion.test.json"
|
|
#RUN_TESTS_IN_MULTIREGION_MODE=true
|
|
RATELIMITER_ENABLED='false'
|