-first-commit

This commit is contained in:
2025-12-16 18:29:49 +07:00
commit 2a0e7d8a12
13 changed files with 250 additions and 0 deletions

View File

@@ -0,0 +1,3 @@
npx nuxi@latest init frontend # (หรือตาม template ที่เครื่องมี)
cd frontend
npm install vuetify vite-plugin-vuetify @mdi/font axios pinia @pinia/nuxt tailwindcss

View File

@@ -0,0 +1,3 @@
mkdir backend && cd backend
npm init -y
npm install express cors dotenv knex mysql2 jsonwebtoken bcrypt morgan multer swagger-ui-express swagger-jsdoc

26
backend/package.json Normal file
View File

@@ -0,0 +1,26 @@
{
"name": "backend",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [],
"author": "",
"license": "ISC",
"type": "commonjs",
"dependencies": {
"bcrypt": "^6.0.0",
"cors": "^2.8.5",
"dotenv": "^17.2.3",
"express": "^5.2.1",
"jsonwebtoken": "^9.0.3",
"knex": "^3.1.0",
"morgan": "^1.10.1",
"multer": "^2.0.2",
"mysql2": "^3.15.3",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^5.0.1"
}
}