1
0
Workshop for the mind
Go to file
2022-05-13 14:36:26 +02:00
.idea Refactor and renaming 2022-04-25 10:33:38 +02:00
.vscode Cleanup 2022-04-26 20:31:31 +02:00
desktop Cleanup 2022-04-26 20:31:31 +02:00
mobile Task fixes 2022-04-01 17:32:03 +02:00
packages Dependency builds for plugos 2022-05-13 14:36:26 +02:00
.DS_Store Plug manger rebuild 2022-05-11 11:49:27 +02:00
.gitignore Clean 2022-04-29 13:37:31 +02:00
.parcelrc Moving everything into a single repo and build 2022-03-20 09:56:28 +01:00
package-lock.json Tweaks 2022-05-04 16:26:52 +02:00
package.json Fix resolve vs realpath 2022-05-01 17:20:38 +00:00
README.md Switched to npm workspace 2022-04-21 15:04:37 +02:00
tsconfig.json Monorepo with yarn workspaces requires yarn 3.2 2022-04-21 14:16:40 +02:00

Silver Bullet

Mono repo using npm workspaces.

To install, after clone:

# The path for pages, hardcoded for `npm run server`
mkdir -p pages
# Install dependencies
npm install
# Run initial build (web app, server, etc.)
npm run build
# Again, to install the CLIs just built
npm install
# Build plugs (ctrl-c after done, it's watching)
npm run plugs
# Symlink in the default set of plugs into your space
cd pages
ln -s ../packages/plugs/dist _plug
cd ..
# Launch server
npm run server

Open at http://localhost:3000

General development workflow:

# Run these in separate terminals
npm run watch
npm run server
npm run plugs