laconic-console/packages/console-app
2020-07-20 15:29:15 +00:00
..
public Server Console App directly from the server. 2020-05-27 19:09:20 -04:00
src Add wns tab for Bot Factories. 2020-07-20 11:24:33 -04:00
app.yml DxOS -> DXOS 2020-06-23 09:19:01 -05:00
babel.config.js DxOS -> DXOS 2020-06-23 09:19:01 -05:00
config.yml DxOS -> DXOS 2020-06-23 09:19:01 -05:00
config.yml.development DxOS -> DXOS 2020-06-23 09:19:01 -05:00
config.yml.kube DxOS -> DXOS 2020-06-23 09:19:01 -05:00
config.yml.production DxOS -> DXOS 2020-06-23 09:19:01 -05:00
package.json v1.0.0-beta.16 2020-07-20 15:29:15 +00:00
README.md App download indicator. 2020-06-08 16:10:00 -05:00
version.ejs Server Console App directly from the server. 2020-05-27 19:09:20 -04:00
webpack-analyzer.config.js DxOS -> DXOS 2020-06-23 09:19:01 -05:00
webpack-common.config.js DxOS -> DXOS 2020-06-23 09:19:01 -05:00
webpack.config.js DxOS -> DXOS 2020-06-23 09:19:01 -05:00

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);