Laconic Console App
Go to file
zramsay fc83856e11
All checks were successful
Publish npm package to gitea / npm_publish (18.x) (release) Successful in 2m52s
Merge pull request 'Update package version' (#56) from zramsay-patch-2 into main
Reviewed-on: #56
2024-08-09 19:10:42 +00:00
.gitea/workflows v1.3.6 2024-01-15 15:46:05 -06:00
.github/workflows Refactor code to remove dxos and rename to laconic (#5) 2022-12-05 14:16:14 +05:30
public add favicon, hard code site title 2024-08-09 10:16:13 -04:00
scripts Update version (#44) 2024-01-15 21:12:31 +00:00
src background for sidebar, tabs and footer darker, inner container lighter 2024-08-09 00:02:37 -04:00
.gitignore Layout with sidebar. 2020-05-23 19:01:17 -04:00
app.yml First cut at de-lernaizing 2023-03-20 02:23:46 -06:00
babel.config.js Remove unnecessary plugin 2023-03-21 09:17:30 -06:00
CHANGELOG.md Fill in some change details (but mainly kick the build). 2020-06-15 16:39:18 -05:00
config-hosted.yml Use lowercase 2023-03-31 14:55:09 -06:00
config-kube.yml First cut at de-lernaizing 2023-03-20 02:23:46 -06:00
config-local.yml add favicon, hard code site title 2024-08-09 10:16:13 -04:00
config-production.yml First cut at de-lernaizing 2023-03-20 02:23:46 -06:00
config-testnet.yml First cut at de-lernaizing 2023-03-20 02:23:46 -06:00
LICENSE Create LICENSE 2020-11-04 09:53:21 +01:00
package.json Update package version 2024-08-09 19:09:54 +00:00
README.md Rename laconic2d to laconicd repo in readme (#53) 2024-07-23 04:54:40 +00:00
version.ejs First cut at de-lernaizing 2023-03-20 02:23:46 -06:00
webpack-analyzer.config.js First cut at de-lernaizing 2023-03-20 02:23:46 -06:00
webpack-common.config.js Fix webpack config for non-workspace repo 2023-03-21 09:41:03 -06:00
webpack.config.js add favicon, hard code site title 2024-08-09 10:16:13 -04:00
yarn.lock Upgrade registry-sdk package version (#51) 2024-07-22 06:22:21 +00:00

Console

Laconic console application.

User interface for submitting and reading records registered on Laconic.

Development

  • Clone the required repos:

    • laconicd

      git clone git@git.vdb.to:cerc-io/laconicd.git
      
  • Run the laconicd chain:

    • In laconicd repo, start the chain

      ./scripts/init.sh clean
      
  • Run the laconic-console app

    • From the root of this repo, run:

      yarn
      

      NOTE: There is a warning containing error while installing dependencies

      warning Error running install script for optional dependency: ".../laconic-console/node_modules/sodium-native: Command failed.
      Exit code: 1
      ...
      Error: ./configure exited with 127
      

      This can be ignored as it is an error for installing optional dependency

    • Start the app:

      CONFIG_FILE=config-local.yml yarn start
      
    • Open console at http://localhost:8080

    • To view records in the console, the test suite in registry-sdk can be run

      • Clone the registry-sdk repo:

        git clone git@git.vdb.to:cerc-io/registry-sdk.git
        
      • In registry-sdk repo, copy .env.example file and create a .env file

        cp .env.example .env
        
      • Export the private key using:

        laconicd keys export alice --keyring-backend test  --unarmored-hex --unsafe
        
      • Copy the private key exported above and assign it to variable PRIVATE_KEY in the .env file.

      • Install dependencies

        yarn
        
      • Run the tests in registry-sdk repo:

        yarn test
        

        NOTE: One test from util.test.ts fails as mentioned in the PR

      • Open console at http://localhost:8080 to view the records.