Important
This repository is no longer maintained.
All walt.id development continues in the monorepo:
docker build -t waltid/ssikit-issuer-portal .
# install dependencies
$ yarn install
# serve with hot reload at localhost:3000
$ yarn dev
# build for production and launch server
$ yarn build
$ yarn start
# generate static project
$ yarn generateFor detailed explanation on how things work, check out the documentation.
List current citizens in in-memory database:
https://bosa.walt-test.cloud/ghent/citizens/list
Upload citizen data:
- Populate data in ghent-citizens.json
- POST data using curl:
curl -X POST https://bosa.walt-test.cloud/ghent/citizens/put -d @ghent-citizens.json
Frontend
- Checkout project: https://github.com/walt-id/ghent-energy-portal
- Make sure to set proxy in
nuxt.config.jslike this:
proxy: {
'/issuer-api/': 'https://wallet.walt-test.cloud',
'/onboarding-api/': 'https://wallet.walt-test.cloud',
'/api/': 'https://wallet.walt-test.cloud',
'/bosa/': 'https://integrations.walt-test.cloud'
}
- Build:
yarn install
yarn dev