Some checks failed
CI Pipeline / Lint & Type Check (push) Has been cancelled
CI Pipeline / Validate SSOT Constants (push) Has been cancelled
CI Pipeline / Backend Tests (push) Has been cancelled
CI Pipeline / Frontend Tests (push) Has been cancelled
CI Pipeline / Build (push) Has been cancelled
CI Pipeline / Docker Build (push) Has been cancelled
- 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
588 B
Plaintext
17 lines
588 B
Plaintext
# =============================================================================
|
|
# Subrepositorios de erp-construccion
|
|
# Cada subproyecto tiene su propio repositorio para deployment independiente
|
|
# =============================================================================
|
|
|
|
[submodule "backend"]
|
|
path = backend
|
|
url = git@gitea-server:rckrdmrd/erp-construccion-backend.git
|
|
|
|
[submodule "frontend"]
|
|
path = frontend
|
|
url = git@gitea-server:rckrdmrd/erp-construccion-frontend-web.git
|
|
|
|
[submodule "database"]
|
|
path = database
|
|
url = git@gitea-server:rckrdmrd/erp-construccion-database.git
|