-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Initial commit: Setup dropship platform with React frontend and Node.…
…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
Showing
670 changed files
with
20,838 additions
and
162,623 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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.* |
Oops, something went wrong.