Remove unused RQ_QUEUES

This commit is contained in:
richard-dds 2019-11-26 16:33:47 -05:00 committed by dandds
parent 97bc63df66
commit 6b2427a98d
3 changed files with 2 additions and 4 deletions

View File

@ -3,7 +3,7 @@
"files": "^.secrets.baseline$|^.*pgsslrootcert.yml$", "files": "^.secrets.baseline$|^.*pgsslrootcert.yml$",
"lines": null "lines": null
}, },
"generated_at": "2019-11-26T21:32:13Z", "generated_at": "2019-11-26T21:33:43Z",
"plugins_used": [ "plugins_used": [
{ {
"base64_limit": 4.5, "base64_limit": 4.5,
@ -46,7 +46,7 @@
"hashed_secret": "81b127e2222d9bfc4609053faec85300f7525463", "hashed_secret": "81b127e2222d9bfc4609053faec85300f7525463",
"is_secret": false, "is_secret": false,
"is_verified": false, "is_verified": false,
"line_number": 291, "line_number": 290,
"type": "Secret Keyword" "type": "Secret Keyword"
} }
], ],

View File

@ -248,7 +248,6 @@ To generate coverage reports for the Javascript tests:
- `PGUSER`: String specifying the username to use when connecting to the postgres database. - `PGUSER`: String specifying the username to use when connecting to the postgres database.
- `PORT`: Integer specifying the port to bind to when running the flask server. Used only for local development. - `PORT`: Integer specifying the port to bind to when running the flask server. Used only for local development.
- `REDIS_URI`: URI for the redis server. - `REDIS_URI`: URI for the redis server.
- `RQ_QUEUES`:
- `SECRET_KEY`: String key which will be used to sign the session cookie. Should be a long string of random bytes. https://flask.palletsprojects.com/en/1.1.x/config/#SECRET_KEY - `SECRET_KEY`: String key which will be used to sign the session cookie. Should be a long string of random bytes. https://flask.palletsprojects.com/en/1.1.x/config/#SECRET_KEY
- `SERVER_NAME`: Hostname for ATAT. - `SERVER_NAME`: Hostname for ATAT.
- `SESSION_COOKIE_NAME`: String value specifying the name to use for the session cookie. https://flask.palletsprojects.com/en/1.1.x/config/#SESSION_COOKIE_NAME - `SESSION_COOKIE_NAME`: String value specifying the name to use for the session cookie. https://flask.palletsprojects.com/en/1.1.x/config/#SESSION_COOKIE_NAME

View File

@ -25,7 +25,6 @@ PGSSLROOTCERT
PGUSER = postgres PGUSER = postgres
PORT=8000 PORT=8000
REDIS_URI = redis://localhost:6379 REDIS_URI = redis://localhost:6379
RQ_QUEUES = atat_%(ENVIRONMENT)s
SECRET_KEY = change_me_into_something_secret SECRET_KEY = change_me_into_something_secret
SERVER_NAME SERVER_NAME
SESSION_COOKIE_NAME=atat SESSION_COOKIE_NAME=atat