1
0
Workshop for the mind
Go to file
Zef Hemel 098a419ff3 Work
2022-04-29 18:54:27 +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 Work 2022-04-29 18:54:27 +02:00
.DS_Store Work 2022-04-26 19:04:36 +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 Work 2022-04-29 18:54:27 +02:00
package.json Clean 2022-04-29 13:37:31 +02: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