Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 14 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@ on: [push, pull_request]
jobs:
quality:
runs-on: ubuntu-latest
env:
MONGO_USER: ${{ secrets.MONGO_USER }}
MONGO_PASS: ${{ secrets.MONGO_PASS }}
steps:
- uses: actions/checkout@v3

Expand All @@ -19,6 +22,17 @@ jobs:
node-version: '20'
cache: 'pnpm'

- name: Check environment variables
run: |
if [ -z "$MONGO_USER" ]; then
echo "MONGO_USER is not set or empty"
exit 1
fi
if [ -z "$MONGO_PASS" ]; then
echo "MONGO_PASS is not set or empty"
exit 1
fi
echo "Both environment variables are set"
- name: Install Dependencies
run: pnpm install

Expand Down
21 changes: 21 additions & 0 deletions components.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
{
"$schema": "https://ui.shadcn.com/schema.json",
"style": "new-york",
"rsc": true,
"tsx": true,
"tailwind": {
"config": "tailwind.config.ts",
"css": "src/app/globals.css",
"baseColor": "neutral",
"cssVariables": true,
"prefix": ""
},
"aliases": {
"components": "@/components",
"utils": "@/lib/utils",
"ui": "@/components/ui",
"lib": "@/lib",
"hooks": "@/hooks"
},
"iconLibrary": "lucide"
}
16 changes: 15 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,25 @@
"prepare": "husky"
},
"dependencies": {
"@radix-ui/react-dialog": "^1.1.11",
"@radix-ui/react-dropdown-menu": "^2.1.12",
"@radix-ui/react-slot": "^1.2.0",
"better-auth": "^1.2.7",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"lint-staged": "^15.5.0",
"lucide-react": "^0.503.0",
"mongodb": "6.15.0",
"mongoose": "^8.13.2",
"next": "15.3.0",
"prettier": "^3.5.3",
"prettier-plugin-tailwindcss": "^0.6.11",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"sass": "^1.86.3",
"shadcn": "^2.5.0",
"tailwind-merge": "^3.2.0",
"tailwindcss-animate": "^1.0.7",
"zustand": "^5.0.3"
},
"devDependencies": {
Expand All @@ -37,7 +50,8 @@
"eslint --fix",
"prettier --write"
],
"*.{html,scss,css,yml}": "prettier --write"
"*.{html,scss,css,yml}": "prettier --write",
"*.{ts,tsx}": "tsc --noEmit"
},
"packageManager": "pnpm@10.5.2+sha512.da9dc28cd3ff40d0592188235ab25d3202add8a207afbedc682220e4a0029ffbff4562102b9e6e46b4e3f9e8bd53e6d05de48544b0c57d4b0179e22c76d1199b"
}
Loading
Loading