forked from cerc-io/laconic-console
| .. | ||
| public | ||
| src | ||
| babel.config.js | ||
| config.yml | ||
| package.json | ||
| README.md | ||
| version.ejs | ||
| webpack-analyzer.config.js | ||
| webpack-common.config.js | ||
| webpack.config.js | ||
Console
Apollo GraphQL client.
Usage
First start the server:
cd packages/console-server
yarn start
Then start the Webpack devserver.
cd packages/console-app
yarn start
Then load the app: http://localhost:8080.
Deploy
yarn build
This creates the following folders:
/dist
/es # Module imports.
/production # Production build.
NOTE: GQL and Production files and exported and may be used by the server.
import QUERY_STATUS from '@dxos/console-client/gql/system_status.graphql';
import config from '@dxos/console-client/config.json';
...
const file = path.join(__dirname + '../../../../node_modules/@dxos/console-client/dist/production', 'index.html');
res.sendFile(file);