- Add .gitmodules with references to independent subrepos - Add .gitignore to exclude subrepo directories - Each subrepo (backend, frontend, database) now has its own git repo - Enables independent deployment via Jenkins
17 lines
604 B
Plaintext
17 lines
604 B
Plaintext
# =============================================================================
|
|
# Subrepositorios de erp-mecanicas-diesel
|
|
# Cada subproyecto tiene su propio repositorio para deployment independiente
|
|
# =============================================================================
|
|
|
|
[submodule "backend"]
|
|
path = backend
|
|
url = git@gitea-server:rckrdmrd/erp-mecanicas-diesel-backend.git
|
|
|
|
[submodule "frontend"]
|
|
path = frontend
|
|
url = git@gitea-server:rckrdmrd/erp-mecanicas-diesel-frontend-web.git
|
|
|
|
[submodule "database"]
|
|
path = database
|
|
url = git@gitea-server:rckrdmrd/erp-mecanicas-diesel-database.git
|