Skip to content

Commit a12cd35

Browse files
committed
Initial VK Mini App starter
0 parents  commit a12cd35

51 files changed

Lines changed: 8306 additions & 0 deletions

Some content is hidden

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

.github/workflows/ci.yml

Lines changed: 64 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,64 @@
1+
name: CI
2+
3+
on:
4+
push:
5+
pull_request:
6+
7+
jobs:
8+
frontend:
9+
name: Frontend
10+
runs-on: ubuntu-latest
11+
defaults:
12+
run:
13+
working-directory: frontend
14+
steps:
15+
- name: Checkout
16+
uses: actions/checkout@v4
17+
18+
- name: Setup Node.js
19+
uses: actions/setup-node@v4
20+
with:
21+
node-version: 20
22+
cache: npm
23+
cache-dependency-path: frontend/package-lock.json
24+
25+
- name: Install dependencies
26+
run: npm ci
27+
28+
- name: Audit dependencies
29+
run: npm audit
30+
31+
- name: Type check
32+
run: npm run lint
33+
34+
- name: Build
35+
run: npm run build
36+
37+
backend:
38+
name: Backend
39+
runs-on: ubuntu-latest
40+
defaults:
41+
run:
42+
working-directory: backend
43+
steps:
44+
- name: Checkout
45+
uses: actions/checkout@v4
46+
47+
- name: Setup Node.js
48+
uses: actions/setup-node@v4
49+
with:
50+
node-version: 20
51+
cache: npm
52+
cache-dependency-path: backend/package-lock.json
53+
54+
- name: Install dependencies
55+
run: npm ci
56+
57+
- name: Audit dependencies
58+
run: npm audit
59+
60+
- name: Type check
61+
run: npm run lint
62+
63+
- name: Build
64+
run: npm run build

.gitignore

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
.DS_Store
2+
.idea/
3+
.vscode/
4+
5+
node_modules/
6+
frontend/node_modules/
7+
backend/node_modules/
8+
9+
dist/
10+
frontend/dist/
11+
backend/dist/
12+
13+
*.tsbuildinfo
14+
15+
.env
16+
.env.local
17+
.env.*.local
18+
frontend/.env
19+
backend/.env
20+
21+
npm-debug.log*
22+
yarn-debug.log*
23+
yarn-error.log*
24+
pnpm-debug.log*
25+
26+
coverage/

LICENSE

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
MIT License
2+
3+
Copyright (c) 2026 DevFlex Pro
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

0 commit comments

Comments
 (0)