Skip to content

Commit

Permalink
Migration vers un monorepo ✨
Browse files Browse the repository at this point in the history
  • Loading branch information
vincentlaine committed Feb 10, 2025
0 parents commit 98ad4c3
Show file tree
Hide file tree
Showing 7 changed files with 20,448 additions and 0 deletions.
57 changes: 57 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,57 @@
# compiled output
/dist
/node_modules
/build

# Logs
logs
*.log
npm-debug.log*
pnpm-debug.log*
yarn-debug.log*
yarn-error.log*
lerna-debug.log*

# OS
.DS_Store

# Tests
/coverage
/.nyc_output

# IDEs and editors
/.idea
.project
.classpath
.c9/
*.launch
.settings/
*.sublime-workspace

# IDE - VSCode
.vscode/*
!.vscode/settings.json
!.vscode/tasks.json
!.vscode/launch.json
!.vscode/extensions.json

# dotenv environment variable files
.env
.env.development.local
.env.test.local
.env.production.local
.env.local
.env*

# temp directory
.temp
.tmp

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

# Diagnostic reports (https://nodejs.org/api/report.html)
report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json
1 change: 1 addition & 0 deletions apps/backend
Submodule backend added at f3b449
1 change: 1 addition & 0 deletions apps/backend-admin
Submodule backend-admin added at fc8a0e
1 change: 1 addition & 0 deletions apps/frontend
Submodule frontend added at 732e10
1 change: 1 addition & 0 deletions apps/frontend-admin
Submodule frontend-admin added at 544ca8
20 changes: 20 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
{
"version": "1.0.0",
"private": true,
"workspaces": [
"apps/backend-admin",
"apps/frontend-admin",
"apps/backend",
"apps/frontend"
],
"scripts": {
"dev:public-backend": "yarn workspace vigieau_backend run start:dev",
"dev:public-frontend": "yarn workspace vigieau_frontend run dev",
"dev:admin-backend": "yarn workspace vigieau_admin_backend run start:dev",
"dev:admin-frontend": "yarn workspace vigieau_admin_frontend run dev",
"dev": "concurrently \"yarn dev:public-backend\" \"yarn dev:public-frontend\" \"yarn dev:admin-backend\" \"yarn dev:admin-frontend\""
},
"devDependencies": {
"concurrently": "^7.0.0"
}
}
Loading

0 comments on commit 98ad4c3

Please sign in to comment.