From d74ff94c45145e7d13637823159bd798b163e696 Mon Sep 17 00:00:00 2001 From: Fovway Date: Sun, 12 Oct 2025 01:14:45 +0700 Subject: [PATCH] modified: .gitignore new file: backend/.env new file: frontend/public/icon.svg new file: frontend/public/vite.svg --- .gitignore | 137 +-------------------------------------- backend/.env | 7 ++ frontend/public/icon.svg | 6 ++ frontend/public/vite.svg | 1 + 4 files changed, 15 insertions(+), 136 deletions(-) create mode 100644 backend/.env create mode 100644 frontend/public/icon.svg create mode 100644 frontend/public/vite.svg diff --git a/.gitignore b/.gitignore index e31f525..82d30cc 100644 --- a/.gitignore +++ b/.gitignore @@ -1,137 +1,2 @@ -# Dependencies + node_modules/ -npm-debug.log* -yarn-debug.log* -yarn-error.log* - -# Environment variables -.env -.env.local -.env.development.local -.env.test.local -.env.production.local - -# Logs -logs -*.log -npm-debug.log* -yarn-debug.log* -yarn-error.log* -lerna-debug.log* - -# Runtime data -pids -*.pid -*.seed -*.pid.lock - -# Coverage directory used by tools like istanbul -coverage/ -*.lcov - -# nyc test coverage -.nyc_output - -# Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files) -.grunt - -# Bower dependency directory (https://bower.io/) -bower_components - -# node-waf configuration -.lock-wscript - -# Compiled binary addons (https://nodejs.org/api/addons.html) -build/Release - -# Dependency directories -node_modules/ -jspm_packages/ - -# TypeScript cache -*.tsbuildinfo - -# Optional npm cache directory -.npm - -# Optional eslint cache -.eslintcache - -# Microbundle cache -.rpt2_cache/ -.rts2_cache_cjs/ -.rts2_cache_es/ -.rts2_cache_umd/ - -# Optional REPL history -.node_repl_history - -# Output of 'npm pack' -*.tgz - -# Yarn Integrity file -.yarn-integrity - -# dotenv environment variables file -.env.test - -# parcel-bundler cache (https://parceljs.org/) -.cache -.parcel-cache - -# Next.js build output -.next - -# Nuxt.js build / generate output -.nuxt -dist - -# Gatsby files -.cache/ -public - -# vuepress build output -.vuepress/dist - -# Serverless directories -.serverless/ - -# FuseBox cache -.fusebox/ - -# DynamoDB Local files -.dynamodb/ - -# TernJS port file -.tern-port - -# Stores VSCode versions used for testing VSCode extensions -.vscode-test - -# OS generated files -.DS_Store -.DS_Store? -._* -.Spotlight-V100 -.Trashes -ehthumbs.db -Thumbs.db - -# IDE -.vscode/ -.idea/ -*.swp -*.swo -*~ - -# Database -*.sqlite -*.db - -# Temporary files -*.tmp -*.temp - -# Build artifacts -build/ -dist/ \ No newline at end of file diff --git a/backend/.env b/backend/.env new file mode 100644 index 0000000..3b09a71 --- /dev/null +++ b/backend/.env @@ -0,0 +1,7 @@ +DB_HOST=90.189.198.107 +DB_PORT=5431 +DB_USER=postgres +DB_PASSWORD=g7K4b4Xv! +DB_NAME=time_tracking +JWT_SECRET=your_jwt_secret_key_here +PORT=5000 \ No newline at end of file diff --git a/frontend/public/icon.svg b/frontend/public/icon.svg new file mode 100644 index 0000000..8b4140b --- /dev/null +++ b/frontend/public/icon.svg @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/frontend/public/vite.svg b/frontend/public/vite.svg new file mode 100644 index 0000000..e7b8dfb --- /dev/null +++ b/frontend/public/vite.svg @@ -0,0 +1 @@ + \ No newline at end of file