Skip to content

Commit

Permalink
feat: form repository
Browse files Browse the repository at this point in the history
  • Loading branch information
elianiva committed Jan 17, 2024
1 parent 815ed3e commit 9c0d34a
Show file tree
Hide file tree
Showing 9 changed files with 1,144 additions and 38 deletions.
5 changes: 4 additions & 1 deletion .env.example
Original file line number Diff line number Diff line change
@@ -1,2 +1,5 @@
MONGO_USERNAME=admin
MONGO_PASSWORD=password
MONGO_PASSWORD=password
MONGO_HOST=localhost
MONGO_PORT=27017
MONGO_DB=onlyforms
2 changes: 1 addition & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ services:
volumes:
- dbdata:/data/db
ports:
- 27017:27017
- ${MONGO_PORT:-27017}:27017
environment:
MONGO_INITDB_ROOT_USERNAME: ${MONGO_USERNAME:-admin}
MONGO_INITDB_ROOT_PASSWORD: ${MONGO_PASSWORD:-password}
Expand Down
72 changes: 38 additions & 34 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,36 +1,40 @@
{
"name": "interview",
"version": "0.0.1",
"private": true,
"scripts": {
"dev": "vite dev",
"build": "vite build",
"preview": "vite preview",
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch",
"format": "prettier src --write"
},
"devDependencies": {
"@sveltejs/adapter-auto": "^2.0.0",
"@sveltejs/kit": "^1.20.4",
"autoprefixer": "^10.4.14",
"postcss": "^8.4.24",
"postcss-load-config": "^4.0.1",
"prettier": "^3.0.3",
"svelte": "^4.0.5",
"svelte-check": "^3.4.3",
"tailwindcss": "^3.3.2",
"tslib": "^2.4.1",
"typescript": "^5.0.0",
"vite": "^4.4.2"
},
"type": "module",
"dependencies": {
"bits-ui": "^0.5.7",
"clsx": "^2.0.0",
"lucide-svelte": "^0.285.0",
"tailwind-merge": "^1.14.0",
"tailwind-variants": "^0.1.14",
"zod": "^3.22.4"
}
"name": "interview",
"version": "0.0.1",
"private": true,
"scripts": {
"dev": "vite dev",
"build": "vite build",
"preview": "vite preview",
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch",
"format": "prettier src --write",
"test": "vitest run",
"test:tdd": "vitest run --watch"
},
"devDependencies": {
"@sveltejs/adapter-auto": "^2.0.0",
"@sveltejs/kit": "^1.20.4",
"autoprefixer": "^10.4.14",
"postcss": "^8.4.24",
"postcss-load-config": "^4.0.1",
"prettier": "^3.0.3",
"svelte": "^4.0.5",
"svelte-check": "^3.4.3",
"tailwindcss": "^3.3.2",
"tslib": "^2.4.1",
"typescript": "^5.0.0",
"vite": "^4.4.2"
},
"type": "module",
"dependencies": {
"bits-ui": "^0.5.7",
"clsx": "^2.0.0",
"lucide-svelte": "^0.285.0",
"mongodb": "^6.3.0",
"tailwind-merge": "^1.14.0",
"tailwind-variants": "^0.1.14",
"vitest": "^1.2.0",
"zod": "^3.22.4"
}
}
Loading

0 comments on commit 9c0d34a

Please sign in to comment.