Skip to content

Commit d0c50a6

Browse files
authored
KB-921 migrate components and tailwind from campus (#304)
* add new components * ui fixes * remove tailwind.config.js
1 parent 0023855 commit d0c50a6

38 files changed

+6287
-7473
lines changed

.eslintrc

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"extends": ["next", "prettier"]
3+
}

.eslintrc.json

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

.github/workflows/build.yml

Lines changed: 25 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -1,37 +1,36 @@
11
name: Build PR intellect.kpi.ua
22

33
permissions:
4-
contents: read
4+
contents: read
55

66
on:
7-
pull_request:
8-
types:
9-
- opened
10-
- reopened
11-
- synchronize
12-
branches:
13-
- master
14-
push:
15-
branches:
16-
- master
17-
7+
pull_request:
8+
types:
9+
- opened
10+
- reopened
11+
- synchronize
12+
branches:
13+
- master
14+
push:
15+
branches:
16+
- master
1817

1918
jobs:
20-
build:
21-
if: ${{ !github.event.pull_request.draft }}
22-
runs-on: ubuntu-latest
19+
build:
20+
if: ${{ !github.event.pull_request.draft }}
21+
runs-on: ubuntu-latest
2322

24-
steps:
25-
- name: Checkout Code
26-
uses: actions/checkout@v5
23+
steps:
24+
- name: Checkout Code
25+
uses: actions/checkout@v5
2726

28-
- name: Set up Node.js
29-
uses: actions/setup-node@v5
30-
with:
31-
node-version: '20'
27+
- name: Set up Node.js
28+
uses: actions/setup-node@v5
29+
with:
30+
node-version: '20'
3231

33-
- name: Install Dependencies
34-
run: npm install
32+
- name: Install Dependencies
33+
run: npm install
3534

36-
- name: Build Application
37-
run: npm run build
35+
- name: Build Application
36+
run: npm run build

docker-compose.debug.yml

Lines changed: 17 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,18 @@
11
services:
2-
intellect-debug:
3-
build:
4-
context: .
5-
dockerfile: debug.dockerfile
6-
container_name: intellect-kpi-debug
7-
ports:
8-
- "3000:3000"
9-
volumes:
10-
- ./:/app
11-
- /app/node_modules
12-
environment:
13-
- NODE_ENV=development
14-
- PORT=3000
15-
- HOSTNAME=0.0.0.0
16-
restart: unless-stopped
17-
stdin_open: true
18-
tty: true
2+
intellect-debug:
3+
build:
4+
context: .
5+
dockerfile: debug.dockerfile
6+
container_name: intellect-kpi-debug
7+
ports:
8+
- '3000:3000'
9+
volumes:
10+
- ./:/app
11+
- /app/node_modules
12+
environment:
13+
- NODE_ENV=development
14+
- PORT=3000
15+
- HOSTNAME=0.0.0.0
16+
restart: unless-stopped
17+
stdin_open: true
18+
tty: true

0 commit comments

Comments
 (0)