Skip to content

Commit 3f45332

Browse files
committed
Added new approach
1 parent c1921e8 commit 3f45332

159 files changed

Lines changed: 28360 additions & 18998 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.dockerignore

Lines changed: 0 additions & 5 deletions
This file was deleted.

.eslintignore

Lines changed: 0 additions & 1 deletion
This file was deleted.

.eslintrc.json

Lines changed: 0 additions & 49 deletions
This file was deleted.

.github/workflows/client-build.yml

Lines changed: 0 additions & 16 deletions
This file was deleted.

.github/workflows/server-build.yml

Lines changed: 0 additions & 16 deletions
This file was deleted.
Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
name: Telegram Trigger Workflow
2+
3+
on:
4+
push:
5+
branches: [polinom]
6+
7+
jobs:
8+
send-inline-message:
9+
runs-on: ubuntu-latest
10+
steps:
11+
- name: Checkout
12+
uses: actions/checkout@v4
13+
14+
- name: Send Inline Telegram Message
15+
uses: cbrgm/telegram-github-action@v1
16+
with:
17+
token: ${{ secrets.TELEGRAM_TOKEN }}
18+
to: ${{ secrets.TELEGRAM_CHAT_ID }}
19+
message: |
20+
New commit by ${{ github.actor }}!
21+
Commit: ${{ github.event.head_commit.message }}
22+
Repository: ${{ github.repository }}
23+
View changes: https://github.com/${{ github.repository }}/commit/${{ github.sha }}

.github/workflows/trigger-telegram.yml

Lines changed: 0 additions & 24 deletions
This file was deleted.

.gitignore

Lines changed: 11 additions & 39 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,14 @@
1+
# See http://help.github.com/ignore-files/ for more about ignoring files.
2+
3+
# compiled output
14
dist
25
tmp
3-
/out-tsc
6+
out-tsc
47

8+
# dependencies
59
node_modules
610

11+
# IDEs and editors
712
/.idea
813
.project
914
.classpath
@@ -12,63 +17,30 @@ node_modules
1217
.settings/
1318
*.sublime-workspace
1419

20+
# IDE - VSCode
1521
.vscode/*
1622
!.vscode/settings.json
1723
!.vscode/tasks.json
1824
!.vscode/launch.json
1925
!.vscode/extensions.json
2026

27+
# misc
2128
/.sass-cache
2229
/connect.lock
2330
/coverage
2431
/libpeerconnection.log
2532
npm-debug.log
2633
yarn-error.log
27-
yarn.lock
2834
testem.log
2935
/typings
3036

37+
# System Files
3138
.DS_Store
3239
Thumbs.db
3340

3441
.nx/cache
35-
.nx/
42+
.nx/workspace-data
3643

44+
# Next.js
3745
.next
3846
out
39-
40-
.env.*
41-
42-
node_modules/
43-
dist/
44-
45-
*.class
46-
47-
*.py[cod]
48-
49-
*.log
50-
51-
*.jar
52-
53-
target/
54-
55-
.idea/
56-
57-
TEST*.xml
58-
59-
.DS_Store
60-
61-
Thumbs.db
62-
63-
*.app
64-
*.exe
65-
*.war
66-
67-
*.mp4
68-
*.tiff
69-
*.avi
70-
*.flv
71-
*.mov
72-
*.wmv
73-
74-
storybook-static

.husky/pre-commit

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,3 @@
1-
yarn run build
1+
npm run reset
2+
npm run web:lint
3+
npm run api:lint

.husky/pre-push

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
npm run reset
2+
npm run api:build:development
3+
npm run web:build:development

0 commit comments

Comments
 (0)