A simple template to get started with adding an "app" to this UI. It contains the bare minimum for a nicely hackable app (if you just want to code somewhere) and the steps needed to create, add and register an new app that appears in the UI.
If you want to add a new app to the UI, this is the place to start.
- Duplicate this
app-123code
folder and give it an appropriate name, in this case we will selectapp-example
to keep things clear. - Edit the
apps-example/package.json
app description, i.e. the name, author and relevant overview.
And we have the basic app source setup, time to get the tooling correct.
- Add the new app to the TypeScript config in root,
tsconfig.json
, i.e. an entry such as"@polkadot/app-example/*": [ "packages/app-example/src/*" ],
At this point the app should be buildable, but not quite reachable. The final step is to add it to the actual sidebar in apps
.
- In
apps-routing/src
duplicate the123code.ts
file toexample.ts
and edit it with the appropriate information, including the hash link, name and icon (any icon name from semantic-ui-react/font-awesome 4 should be appropriate). - In the above description file, the
isHidden
field needs to be toggled to make it appear - the base template is hidden by default. - Finally add the
template
to theapps-routing/src/index.ts
file at the appropriate place for both full and light mode (either optional)
Yes. After all that we have things hooked up. Run yarn start
and your new app (non-coded) should show up. Now start having fun and building something great.