graphql-engine/console
2018-08-30 19:27:06 +05:30
..
bin add console to graphql-engine 2018-06-28 10:27:37 +05:30
cypress permissions ui/ux improvements (close #205) (#295) 2018-08-22 13:55:48 +05:30
src Revert "add links to share and help (#303)" (#334) 2018-08-30 19:27:06 +05:30
static add console to graphql-engine 2018-06-28 10:27:37 +05:30
webpack refactor: convert function expression to arrow function (#181) 2018-07-23 11:59:56 +05:30
.babelrc add console to graphql-engine 2018-06-28 10:27:37 +05:30
.bootstraprc add console to graphql-engine 2018-06-28 10:27:37 +05:30
.eslintignore add console to graphql-engine 2018-06-28 10:27:37 +05:30
.eslintrc add console to graphql-engine 2018-06-28 10:27:37 +05:30
.gitignore fix and/or expressions in permissions builder (#119) 2018-07-12 00:51:26 +05:30
CONTRIBUTING.md fix secure endpoint link, update contributing guide (#117) 2018-07-11 20:07:23 +05:30
cypress.json console: update tests for multiple modes 2018-07-03 12:47:08 +05:30
hasuraconfig.js add console to graphql-engine 2018-06-28 10:27:37 +05:30
index.js export console as npm module (#279) 2018-08-13 14:38:17 +05:30
Makefile console: add gzip compression to deployments (#94) 2018-07-11 12:19:03 +05:30
package-lock.json add limit in select permission which overrides limit in query (close #178) (#237) 2018-08-06 17:45:08 +05:30
package.json export console as npm module (#279) 2018-08-13 14:38:17 +05:30
README.md fix secure endpoint link, update contributing guide (#117) 2018-07-11 20:07:23 +05:30

Usage of Environment Variables

This app uses a few environment variables which are required for development. The production build uses values directly injected by the server serving this app.

We use dotenv for setting environment variables for development. Create a `.env' file in the root directory (wherever package.json is) and set the following values. Replace accordingly for testing.

PORT=3000
NODE_ENV=development
DATA_API_URL=http://localhost:9000
API_HOST=http://localhost
API_PORT=9693
ACCESS_KEY=abcd
CONSOLE_MODE=cli
DEV_DATA_API_URL=http://localhost:9000
URL_PREFIX=/

Note The .env file should not be in version control.