Skip to content

Commit 7b5988d

Browse files
Merge pull request #13 from aXenDeveloper/vitnode
feat: Add vitnode to products
2 parents adc4799 + 788cda2 commit 7b5988d

File tree

16 files changed

+1361
-1876
lines changed

16 files changed

+1361
-1876
lines changed

.eslintignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
graphql/hooks.ts
22
next.config.js
3-
commitlint.config.js
43

54
# next-pwa
65
/public/precache.*.*.js

.github/FUNDING.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
github: aXenDeveloper

.github/workflows/lint-pr.yml

Lines changed: 47 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,47 @@
1+
name: "Lint PR title"
2+
3+
on:
4+
pull_request_target:
5+
branches: "*"
6+
types:
7+
- opened
8+
- edited
9+
- synchronize
10+
11+
permissions:
12+
pull-requests: write
13+
contents: read
14+
15+
jobs:
16+
main:
17+
name: Validate PR title
18+
runs-on: ubuntu-latest
19+
steps:
20+
- uses: amannn/action-semantic-pull-request@v5
21+
id: lint_pr_title
22+
env:
23+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
24+
25+
- uses: marocchino/sticky-pull-request-comment@v2
26+
# When the previous steps fails, the workflow would stop. By adding this
27+
# condition you can continue the execution with the populated error message.
28+
if: always() && (steps.lint_pr_title.outputs.error_message != null)
29+
with:
30+
header: pr-title-lint-error
31+
message: |
32+
Hey there and thank you for opening this pull request! 👋🏼
33+
34+
We require pull request titles to follow the [Conventional Commits specification](https://www.conventionalcommits.org/en/v1.0.0/) and it looks like your proposed title needs to be adjusted.
35+
36+
Details:
37+
38+
```
39+
${{ steps.lint_pr_title.outputs.error_message }}
40+
```
41+
42+
# Delete a previous comment when the issue has been resolved
43+
- if: ${{ steps.lint_pr_title.outputs.error_message == null }}
44+
uses: marocchino/sticky-pull-request-comment@v2
45+
with:
46+
header: pr-title-lint-error
47+
delete: true

.husky/commit-msg

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

.husky/pre-commit

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

.vscode/settings.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111
"Swipeable",
1212
"swiper",
1313
"testid",
14+
"vitnode",
1415
"webp"
1516
],
1617
"stylelint.validate": ["css", "scss"],

README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@ Use commands:
1414

1515
```bash
1616
pnpm i
17-
pnpm prepare
1817
```
1918

2019
## 🛠 Run

commitlint.config.mjs

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

messages/en.json

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@
2828
"home": {
2929
"title": "Coding in The Future",
3030
"desc": "Web Developer and Web Designer creating amazing applications by combining code, design and users.",
31+
"vitnode": "🚀 <bold>Vtinode</bold> CMS is now available in alpha version! 🚀",
3132
"buttons": {
3233
"products": "Check Products",
3334
"contact": "Contact Me"
@@ -133,7 +134,8 @@
133134
"ips-app-vacation": "Application adds an automatic vacation system.",
134135
"ips-app-fontawesome6": "The application updates the Font Awesome version to version 6 without destroying the icons embedded in IPS version 4.",
135136
"ips-app-content-notes": "Application for create notes on contents.",
136-
"ips-app-axen-player-panel": "Application for managing multiplayer game servers."
137+
"ips-app-axen-player-panel": "Application for managing multiplayer game servers.",
138+
"vitnode": "VitNode is a CMS built with NextJS and NestJS. It is designed to be a scalable and flexible platform for creating community-driven websites and applications."
137139
}
138140
},
139141
"faq": {

messages/pl.json

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@
2828
"home": {
2929
"title": "Coding in The Future",
3030
"desc": "Web Developer i Web Designer tworzący niesamowite aplikacje łącząc kod, projekt oraz użytkowników.",
31+
"vitnode": "🚀 <bold>Vitnode</bold> CMS jest już dostępny w wersji alpha! 🚀",
3132
"buttons": {
3233
"products": "Sprawdź produkty",
3334
"contact": "Skontaktuj się ze mną"
@@ -133,7 +134,8 @@
133134
"ips-app-vacation": "Aplikacja dodaje automatyczny system urlopów.",
134135
"ips-app-fontawesome6": "Aplikacja aktualizuje wersję Font Awesome do wersji 6 bez niszczenia ikon osadzonych w IPS w wersji 4.",
135136
"ips-app-content-notes": "Aplikacja do tworzenia notatek na zawartości.",
136-
"ips-app-axen-player-panel": "Aplikacja do zarządzania serwerami multiplayer."
137+
"ips-app-axen-player-panel": "Aplikacja do zarządzania serwerami multiplayer.",
138+
"vitnode": "Vitnode to CMS zbudowany z NextJS i NestJS. Zaprojektowany tak, aby był skalowalną i elastyczną platformą do tworzenia stron internetowych i aplikacji opartych na społeczności."
137139
}
138140
},
139141
"faq": {

0 commit comments

Comments
 (0)