1
0
Workshop for the mind
Go to file
2022-06-13 18:31:36 +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
packages Mostly working except yaml codeblocks 2022-06-13 18:31:36 +02:00
.DS_Store Template instatiation, tweak of query syntax 2022-06-08 15:58:43 +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 Mostly working except yaml codeblocks 2022-06-13 18:31:36 +02:00
package.json Mostly working except yaml codeblocks 2022-06-13 18:31:36 +02:00
README.md Switched to npm workspace 2022-04-21 15:04:37 +02:00
resolutions Mostly working except yaml codeblocks 2022-06-13 18:31:36 +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