1
0
Fork 0
mirror of synced 2024-07-02 04:50:44 +12:00
budibase/packages/server/.env.template

20 lines
501 B
Plaintext
Raw Normal View History

2020-04-27 19:56:51 +12:00
# url of couch db, including username and password
# http://admin:password@localhost:5984
2020-04-25 04:28:32 +12:00
COUCH_DB_URL={{couchDbUrl}}
2020-04-27 19:56:51 +12:00
# local (PouchDB) - default for dev
# remote (CouchDB) - required couch db installation
2020-04-25 04:28:32 +12:00
DATABASE_TYPE={{database}}
2020-04-27 19:56:51 +12:00
# identifies a client database - i.e. group of apps
2020-04-25 04:28:32 +12:00
CLIENT_ID={{clientId}}
2020-04-27 19:56:51 +12:00
# Full access API key for server
2020-04-25 04:28:32 +12:00
ADMIN_SECRET={{adminSecret}}
2020-04-27 19:56:51 +12:00
# used to create cookie hashes
2020-04-25 04:28:32 +12:00
COOKIE_KEY_1={{cookieKey1}}
COOKIE_KEY_2={{cookieKey2}}
2020-04-27 19:56:51 +12:00
# port to run http server on
2020-04-25 04:28:32 +12:00
PORT=4001