Further information can be found in the Documentation
When working on new features or fixing bugs, create a new branch based on main and give it a meaningful name. Rebase or merge main regularly into your branch in order to prevent large merge conflicts.
Naming examples:
- feat/navigation-redesign
- fix/excessive-loading-time
# Clone repository
git clone git@github.com:sec-o-simple/sec-o-simple.git
cd sec-o-simple
# Install NPM dependencies
npm ci# Start vite development server
npm run devThe webapp is now accessible at http://localhost:8080
# Run automated tests
npm test