feat / AER-12 Initiate webapp

This commit is contained in:
Timofey
2025-07-24 14:42:49 +03:00
parent b564f7058c
commit b56deaa92d
54 changed files with 7223 additions and 59 deletions

25
.gitlab-ci.yml Normal file
View File

@@ -0,0 +1,25 @@
stages:
- lint
# - test
lint_frontend:
image: node:23-alpine
stage: lint
script:
- cd frontend
- npm ci
- npm run lint
only:
- main
- merge_requests
# test_backend:
# image: python:3.13-alpine
# stage: test
# script:
# - cd backend
# - pip install -r requirements.txt
# - pytest
# only:
# - main
# - merge_requests