Skip to content

Commit

Permalink
Initial commit: Setup dropship platform with React frontend and Node.…
Browse files Browse the repository at this point in the history
…js backend

- Setup frontend with Vite and MUI v5
- Setup backend with Express, MongoDB, and Redis
- Configure Docker and Nginx
- Add development and production configurations
- Setup basic project structure and components
- Add documentation
  • Loading branch information
Mookth789 committed Dec 21, 2024
1 parent d3cd3fe commit f7e830f
Show file tree
Hide file tree
Showing 670 changed files with 20,838 additions and 162,623 deletions.
120 changes: 104 additions & 16 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,49 +1,137 @@
# Dependencies
node_modules/
**/node_modules/
.pnp/
.pnp.js

# Environment files
# Testing
coverage/
.nyc_output/

# Production
build/
dist/
.next/
out/

# Development
.env
**/.env
.env.local
.env.*.local

# Build files
**/build/
**/dist/
**/.next/
.env.development.local
.env.test.local
.env.production.local

# Logs
logs
logs/
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*

# Runtime data
pids
pids/
*.pid
*.seed
*.pid.lock

# Testing
# Directory for instrumented libs generated by jscoverage/JSCover
lib-cov/

# Coverage directory used by tools like istanbul
coverage/

# IDE
.idea/
.vscode/
*.swp
*.swo

# OS
.DS_Store
Thumbs.db

# Docker
.docker/
docker-compose.override.yml

# MongoDB data
# MongoDB
data/db/

# Redis data
# Redis
dump.rdb

# Misc
.DS_Store
*.pem
.env.local
.env.development.local
.env.test.local
.env.production.local

# Debug
npm-debug.log*
yarn-debug.log*
yarn-error.log*

# Local Netlify folder
.netlify

# Vite
*.local
.vite/

# TypeScript
*.tsbuildinfo

# Optional npm cache directory
.npm

# Optional eslint cache
.eslintcache

# Optional REPL history
.node_repl_history

# Output of 'npm pack'
*.tgz

# Yarn Integrity file
.yarn-integrity

# parcel-bundler cache
.cache
.parcel-cache

# Next.js build output
.next
out

# 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

# yarn v2
.yarn/cache
.yarn/unplugged
.yarn/build-state.yml
.yarn/install-state.gz
.pnp.*
Loading

0 comments on commit f7e830f

Please sign in to comment.