File tree Expand file tree Collapse file tree 4 files changed +11
-3
lines changed
Expand file tree Collapse file tree 4 files changed +11
-3
lines changed Original file line number Diff line number Diff line change 298298 "background" : {
299299 "activeOnStart" : true ,
300300 "beginsPattern" : " ^[watch] build started" ,
301- "endsPattern" : " ( ready in |✔ Compiled successfully.)"
301+ "endsPattern" : " ( ready in |✔ Compiled successfully.|Compiled successfully! )"
302302 // Attempt for vite-plugin-checker
303303 // "endsPattern": "\\[TypeScript\\] Found \\d+ errors?\\. Watching for file changes\\."
304304 }
Original file line number Diff line number Diff line change @@ -10,6 +10,11 @@ In a terminal, run:
1010- ` git config --global core.editor "code --wait" ` - It allows to use GitLens interactive rebase client when running rebases from Git Graph (or from the terminal).
1111- ` corepack enable ` ([ explanation] ( https://yarnpkg.com/getting-started/install ) )
1212
13+ First usage of git? Also run (replace with your name/email):
14+
15+ git config --global user.email "you@example.com "
16+ git config --global user.name "Your Name"
17+
1318## Usage
1419
1520- With VSCode, ` Open Workspace from File... ` , select the file ` clapy.code-workspace ` . ** Don't** open the root directory.
Original file line number Diff line number Diff line change 3434 "migrate:staging" : " npm run hasura:server -- deploy --endpoint updateme" ,
3535 "migrate:prod" : " npm run hasura:server -- deploy --endpoint https://hasura-loitgf2s5q-ew.a.run.app/" ,
3636 "________________ implementation details ________________" : " " ,
37+ "postinstall" : " mkdir -p ../local-gen-clapy" ,
3738 "upwait" : " yarn dup && sleep 5" ,
3839 "install:backend" : " cd backend-clapy && yarn" ,
3940 "install:plugin" : " cd figma-plugin-clapy && yarn" ,
4344 "hasura" : " $(yarn bin hasura) --project db/hasura --envfile ../../.env --skip-update-check" ,
4445 "hasura:server" : " $(yarn bin hasura) --project db/hasura --skip-update-check" ,
4546 "pinggit" : " ssh -T git@github.com" ,
46- "kill" : " sudo kill -9 `sudo lsof -t -i:9001`; sudo kill -9 `sudo lsof -t -i:9000`; sudo kill -9 `sudo lsof -t -i:3000`; sudo kill -9 `sudo lsof -t -i:9229`; echo Done"
47+ "kill" : " sudo kill -9 `sudo lsof -t -i:9001`; sudo kill -9 `sudo lsof -t -i:9000`; sudo kill -9 `sudo lsof -t -i:3000`; sudo kill -9 `sudo lsof -t -i:9230`; echo Done" ,
48+ "free" : " sudo ./scripts/cleanram.sh"
4749 },
4850 "devDependencies" : {
4951 "@graphql-codegen/cli" : " ^2.11.6" ,
Original file line number Diff line number Diff line change 55# https://www.tecmint.com/clear-ram-memory-cache-buffer-and-swap-space-on-linux/
66# sync; echo 1 > /proc/sys/vm/drop_caches
77# sync; echo 2 > /proc/sys/vm/drop_caches
8- sync; echo 3 > /proc/sys/vm/drop_caches
8+ sync; echo 3 > /proc/sys/vm/drop_caches
9+ echo 1 > /proc/sys/vm/compact_memory
You can’t perform that action at this time.
0 commit comments