- Add .gitmodules with references to independent subrepos - Update .gitignore to exclude subrepo directories
17 lines
556 B
Plaintext
17 lines
556 B
Plaintext
# =============================================================================
|
|
# Subrepositorios de erp-core
|
|
# Cada subproyecto tiene su propio repositorio para deployment independiente
|
|
# =============================================================================
|
|
|
|
[submodule "backend"]
|
|
path = backend
|
|
url = git@gitea-server:rckrdmrd/erp-core-backend.git
|
|
|
|
[submodule "frontend"]
|
|
path = frontend
|
|
url = git@gitea-server:rckrdmrd/erp-core-frontend-web.git
|
|
|
|
[submodule "database"]
|
|
path = database
|
|
url = git@gitea-server:rckrdmrd/erp-core-database.git
|