Skip to content

Commit

Permalink
chore: initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
falsepopsky committed Jun 18, 2024
0 parents commit d0090c8
Show file tree
Hide file tree
Showing 19 changed files with 3,585 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .github/labeler.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
"backend":
- "backend/**"
"frontend":
- "frontend/**"
14 changes: 14 additions & 0 deletions .github/workflows/labeler.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
name: Labeler
on: pull_request

jobs:
labeler:
name: 🏷️ Labeler
permissions:
contents: read
pull-requests: write
runs-on: ubuntu-latest
steps:
- uses: actions/[email protected]
with:
configuration-path: .github/labeler.yaml
20 changes: 20 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
# dependencies
node_modules

# next.js
.next/
out/

# production
build

# misc
.DS_Store
*.pem

# local env files
.env*.local

# typescript
*.tsbuildinfo
next-env.d.ts
12 changes: 12 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
{
"npm.scriptExplorerAction": "open",
"npm.autoDetect": "on",
"npm.packageManager": "pnpm",
"files.associations": {
"*.css": "tailwindcss"
},
"eslint.workingDirectories": ["frontend"],
"eslint.validate": ["typescript", "typescriptreact"],
"typescript.tsdk": "./frontend/node_modules/typescript/lib",
"typescript.enablePromptUseWorkspaceTsdk": true
}
Empty file added backend/.gitkeep
Empty file.
3 changes: 3 additions & 0 deletions frontend/.eslintrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"extends": "next/core-web-vitals"
}
1 change: 1 addition & 0 deletions frontend/.nvmrc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
v20.14.0
4 changes: 4 additions & 0 deletions frontend/next.config.mjs
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
/** @type {import('next').NextConfig} */
const nextConfig = {};

export default nextConfig;
26 changes: 26 additions & 0 deletions frontend/package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
{
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint"
},
"dependencies": {
"next": "14.2.4",
"react": "^18.3.1 ",
"react-dom": "^18.3.1"
},
"devDependencies": {
"@types/node": "^20.14.4",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"autoprefixer": "^10.4.19",
"eslint": "^8.57.0",
"eslint-config-next": "14.2.4",
"postcss": "^8.4.38",
"tailwindcss": "^3.4.4",
"typescript": "^5.4.5"
},
"packageManager": "[email protected]"
}
Loading

0 comments on commit d0090c8

Please sign in to comment.