This is the official webapp used for votings with the Nimiq Community at nimiq.com/vote.
Feel free to use the code and send PRs to improve it!
You can find all the details on how to join the Nimiq Community and talk with devs, traders, and fellow Nimions here.
New to Nimiq? Check out nimiq.com.
This app was built with this the Nimiq App Starter Kit. It's using Vue.js, TypeScript, Pug, Stylus, and a bit of magic.
Add the app starter kit to your project:
git remote add starter-kit git@github.com:nimiq/app-starter-kit.git
git fetch starter-kit
Then merge it into your code base:
git merge --allow-unrelated-histories starter-kit/master
To get started, setup everything and get all dependencies with yarn:
yarn install
Run a development server that watches the project files, compiles them on demand and hot-reloads the changes to keep your browser in sync:
yarn serve
Lint your code and automatically fix lint errors:
yarn lint
Compile and minify the project to be ready for deployment in production:
yarn build
Please feel free to get in touch and send PRs!