Secure digital helpdesk platform
Find a file
2024-04-30 13:13:49 +02:00
apps Refactoring 3 2024-04-30 13:13:49 +02:00
database Metamigo -> Bridge 2024-04-21 09:44:30 +02:00
docker Metamigo -> Bridge 2024-04-21 09:44:30 +02:00
packages Refactoring 3 2024-04-30 13:13:49 +02:00
.dockerignore metamigo-frontend: build and run in docker 2023-06-06 07:10:28 +00:00
.editorconfig Align node and npm versions to fix overrides 2023-06-07 10:25:53 +00:00
.gitignore Metamigo -> Bridge 2024-04-21 09:44:30 +02:00
.gitlab-ci.yml Metamigo -> Bridge 2024-04-21 09:44:30 +02:00
.nvmrc Align node and npm versions to fix overrides 2023-06-07 10:25:53 +00:00
LICENSE.md Begin addon reorganization 2023-05-03 10:36:37 +00:00
package-lock.json Refactoring 3 2024-04-30 13:13:49 +02:00
package.json Fix eslint error 2024-04-21 21:13:53 +02:00
README.md Metamigo -> Bridge 2024-04-21 09:44:30 +02:00
turbo.json WIP 3 2024-03-16 23:11:48 +01:00

Dev Setup

NOTE: When using Gitpod/Codespaces, use at least 16GB RAM

Local dev with docker-compose

  • Create link-stack/.env from Bitwarden .env for root of link-stack
  • Run local dev with docker-compose:
    git clone ...
    cd link-stack
    make start-dev
    

Or for local dev of a single app

  • Create link-stack/apps/link/.env.local from Bitwarden .env.local for link-stack/apps/link
  • Create link-stack/apps/bridge-frontend/.bridge.local.json from Bitwarden .bridge.local.json for link-stack/apps/bridge/frontend
  • Build locally for development:
    npm install
    make dev-bridge # this starts the containers
    npm run migrate   # this migrates the db
    npm run dev:bridge  # this runs bridge frontend and api
    

TODO