Secure digital helpdesk platform
Find a file
Darren Clarke 43bfdaa1e3 WIP 1
2024-03-16 12:51:56 +01:00
apps WIP 1 2024-03-16 12:51:56 +01:00
docker WIP 1 2024-03-16 12:51:56 +01:00
packages WIP 1 2024-03-16 12:51:56 +01:00
scripts Dockerfile updates 2023-05-26 12:02:55 +00: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 Update deps 2024-03-03 18:13:26 +01:00
.gitlab-ci.yml Update deps, remove PGP 2023-09-27 11:13:19 +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.json WIP 1 2024-03-16 12:51:56 +01:00
README.md README update 2023-06-07 12:32:27 +00:00
turbo.json npm run dev:metamigo now builds+watches all metamigo things!! 2023-06-07 08:24:13 +00: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/metamigo-frontend/.metamigo.local.json from Bitwarden .metamigo.local.json for link-stack/apps/metamigo/frontend
  • Build locally for development:
    npm install
    make dev-metamigo # this starts the containers
    npm run migrate   # this migrates the db
    npm run dev:metamigo  # this runs metamigo frontend and api
    

TODO