Skip to content
This repository was archived by the owner on Mar 7, 2026. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 10 additions & 3 deletions .cursor/rules/coding.mdc
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,13 @@ alwaysApply: true
- Make sure you understand docs/planning.md and docs/project_plan.md
- Before starting coding, always present a plan for approval.
- Tasks are in docs/project_plan.md
- Each task will be implemented via a feature branch and a PR.
- Before PR is submitted, the task is marked with "PR" in docs/project_plan.md.
- After task is completed (PR merged), the task is marked with a checkmark in docs/project_plan.md
- Each task will be implemented via a feature branch and a PR to the develop branch.
- Always follow the following recipe for implementing tasks:
1. Start implementing after the user has explicitly told so.
2. After finishing implementing, perform all necessary tests and check if the DoD for this task is met.
3. Report on test results and DoD criteria and ask user if a PR should be submitted.
4. If the user approves submitting a PR, and before PR is submitted, the task is marked with "PR" in docs/project_plan.md.
5. After PR ist submitted, report to the user and wait for manual instructions.
6. The user will then review and merge the PR or ask for updates.
7. Pull the repo again to check if the PR has been merged.
8. After task is completed (PR merged), the task is marked with a checkmark in docs/project_plan.md
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ name: CI

on:
push:
branches: [main]
branches: [main, develop]
pull_request:
branches: [main]
branches: [main, develop]

jobs:
install:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/docker-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ name: Docker Test

on:
push:
branches: [main]
branches: [main, develop]
pull_request:
branches: [main]
branches: [main, develop]

jobs:
build-and-test:
Expand Down
1 change: 1 addition & 0 deletions docs/project_plan.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ A pragmatic breakdown into **four one‑week sprints** plus a preparatory **Spri
| 0.4 | Commit Husky hooks (commitlint, lint‑staged). | Attempting to commit code with ESLint errors is blocked locally. | ✓ |
| 0.5 | Seed Changesets & automatic versioning. | Merging PR increments `package.json version` and creates a changelog file. | ✓ |
| 0.6 | **Docker/Dokku infra** – Add multi‑stage `Dockerfile`, `Procfile`; CI job builds image & pushes to test Dokku app. | `gh workflow run docker-test` builds & deploys; Dokku reports container running, health‑check 200. | ✓ |
| 0.7 | **Update GitHub Actions** – Configure CI workflows to run on develop branch and PRs. | CI workflows run on both main and develop branches, as well as PRs targeting these branches. | PR |

---

Expand Down
1 change: 0 additions & 1 deletion packages/ui-kit/src/layout/AuthShell/AuthShell.test.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
import React from 'react';
import { render, screen } from '@testing-library/react';
import { AuthShell } from './AuthShell';

Expand Down
38 changes: 38 additions & 0 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion pnpm-workspace.yaml
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
packages:
- 'packages/*'
- "packages/*"