Secure digital helpdesk platform
Find a file
2023-06-20 09:32:57 +00:00
apps CI updates #4 2023-06-20 09:32:57 +00:00
docker Merge branch 'main' into shell-updates 2023-06-14 06:02:11 +00:00
packages CI updates #1 2023-06-20 07:49:52 +00:00
scripts Dockerfile updates 2023-05-26 12:02:55 +00:00
signald-state metamigo-api: runs in docker now 2023-06-02 15:26:30 +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 metamigo-api: runs in docker now 2023-06-02 15:26:30 +00:00
.gitlab-ci.yml CI updates #3 2023-06-20 08:58:48 +00:00
.gitpod.dockerfile add gitpod.yml 2023-06-02 09:11:49 +00:00
.gitpod.yml gitpod: run npm install on init 2023-06-06 07:11:06 +00:00
.nvmrc Align node and npm versions to fix overrides 2023-06-07 10:25:53 +00:00
docker-compose.yml Merge branch 'main' into shell-updates 2023-06-14 06:02:11 +00:00
LICENSE.md Begin addon reorganization 2023-05-03 10:36:37 +00:00
Makefile npm run dev:metamigo now builds+watches all metamigo things!! 2023-06-07 08:24:13 +00:00
package-lock.json CI updates #4 2023-06-20 09:32:57 +00:00
package.json Update and fix missing dependencies 2023-06-14 06:33:06 +00: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