Elektronisch kandidaatstellingssysteem
  • Rust 77.6%
  • TypeScript 9.2%
  • HTML 6.8%
  • CSS 4.3%
  • Typst 1.7%
  • Other 0.3%
Find a file
Michiel 78f9b0ef83
[#780] Download warning (#843)
Co-authored-by: Marlon <marlonbaeten@users.noreply.github.com>
2026-06-22 11:42:23 +02:00
.config Enforce newline at the end of every file 2025-12-09 16:24:22 +01:00
.github Bump the github-actions group with 2 updates (#830) 2026-06-18 10:23:16 +02:00
auth-service [#409] Add auth service stub, select election page (#566) 2026-04-17 15:46:20 +02:00
bin [#836] Added bin/check --full and fixed clippy issues (#837) 2026-06-22 09:56:46 +02:00
deploy [#650] Remove k8 deployment from this repository (#648) 2026-05-04 10:39:43 +02:00
development [#836] Added bin/check --full and fixed clippy issues (#837) 2026-06-22 09:56:46 +02:00
docs [#791] Finally finalise finalise page (#829) 2026-06-19 12:56:34 +02:00
frontend [#780] Download warning (#843) 2026-06-22 11:42:23 +02:00
locales [#780] Download warning (#843) 2026-06-22 11:42:23 +02:00
models [#758, #763] Remove check for H3-1/2 on H1 for blank lists & don't produce H4 if previously seated (#759) 2026-06-03 11:57:07 +02:00
playwright [#791] Finally finalise finalise page (#829) 2026-06-19 12:56:34 +02:00
src [#780] Download warning (#843) 2026-06-22 11:42:23 +02:00
tooling [#791] Finally finalise finalise page (#829) 2026-06-19 12:56:34 +02:00
validate [#595] Simplify CSRF tokens (#596) 2026-04-23 08:39:00 +00:00
.env [#737] Improve code structure (#735) 2026-05-26 14:27:13 +00:00
.gitignore [#740] add warning for candidates that are too young (#770) 2026-06-05 09:11:36 +00:00
askama.toml Add button to download H1 (#345) 2026-02-26 09:19:33 +01:00
biome.json Playwright alternative (#371) 2026-03-02 19:42:34 +00:00
build.rs [#428] Load the embed-typst files in build.rs (#429) 2026-03-16 14:14:00 +01:00
Cargo.lock [#832] Bump e-KS version (#833) 2026-06-19 13:24:36 +02:00
Cargo.toml [#832] Bump e-KS version (#833) 2026-06-19 13:24:36 +02:00
compose.yml Separate development tools project (#100) 2026-01-09 13:28:03 +01:00
CONTRIBUTING.md Add contributor and security policy 2025-12-01 10:58:02 +01:00
deny.toml Embed typst webservice when feature flag is enabled (#356) 2026-02-27 10:17:50 +01:00
djlint.toml feature/e-ks#140: implement release pipeline (#333) 2026-03-02 16:02:57 +01:00
LICENSE EUPL v1.2 license 2025-12-01 10:16:52 +01:00
README.md [#705] Added technical documentation (#706) 2026-05-21 09:45:49 +02:00
rustfmt.toml Enforce newline at the end of every file 2025-12-09 16:24:22 +01:00
SECURITY.md Add contributor and security policy 2025-12-01 10:58:02 +01:00
sigrid.yaml [#551] Exclude some directories for sig thirdpartyfindings (#555) 2026-04-16 14:05:13 +02:00
sonar-project.properties Exclude TS from codecoverage in sonarqube 2026-02-02 14:57:09 +01:00

Let op: dit project bevindt zich momenteel in een opstartfase. Documentatie en code zullen onvolledig en soms incorrect zijn.

e-KS

Om te kunnen deelnemen aan een verkiezing moet een politieke groepering aangeven met welke kandidaten ze mee wil doen. Hiervoor moeten ze verschillende documenten inleveren bij het centraal stembureau. Dit heet de kandidaatstellingsprocedure.

e-KS staat voor het elektronisch Kandidaatstellingssysteem: een webapplicatie waarmee de Kiesraad de huidige kandidaatstellingsprocedure op een eerlijke, transparante en controleerbare manier wil moderniseren. Het nieuwe systeem zal op termijn de huidige ondersteunende software (OSV2020-PP en OSV2020-KS) vervangen.

Requirements

De kandidaatstellingsprocedure is verankerd in de Kieswet.

Een overzicht van het huidige proces en e-KS is te lezen in deze presentatie.

Belangrijke stukken of formulieren voor de kandidaatstellingsprocedure zijn:

Technische architectuur

Een overzicht van de voorgestelde technische afwegingen staat in deze presentatie.

Een diepere duik in de technische architectuur is te vinden in deze documentatie.

Development setup

  1. Install prerequisites:
  1. Build and download development tools:
bin/init
  1. Start the development environment (postgres, esbuild, cargo watch, etc.):
bin/dev

Development tools

  • bin/esbuild: transpile and bundle Typescript and CSS, also services frontend assets in development
  • bin/biome: format and lint Typescript
  • bin/setup: download tools, setup database, load fixtures, etc.
  • bin/dev: start development environment (postgres, esbuild, cargo watch, etc.)
  • bin/test: run integration tests (playwright) in a docker conmtainer
  • bin/init: build and download development tools
  • bin/check: run linter, formatters and Rust tests
  • bin/build: build backend and frontend for production
  • bin/update_locales: update locale files based on used keys in the codebase

Playwright tests

Playwright lives in playwright. See playwright/README.md for setup and run instructions.