As configured in my dotfiles.
start new:
tmux
start new with session name:
| { | |
| "scripts": { | |
| // ... | |
| "db:migrate:up": "bun run -r dotenv/config ./src/lib/db/migrate latest", | |
| "db:migrate:down": "bun run -r dotenv/config ./src/lib/db/migrate down", | |
| "db:migrate:create": "bun run -r dotenv/config ./src/lib/db/migrate create initial", | |
| "db:generate:types": "bunx kysely-codegen --out-file=src/lib/db/schema/Database.ts", | |
| }, | |
| "dependencies": { | |
| "kysely": "^0.27.3", |
As configured in my dotfiles.
start new:
tmux
start new with session name:
| #!/bin/bash | |
| # bash script that can setup environment with common linting and testing tools | |
| yes="${@}" | |
| function yes_or_no { | |
| if [[ $yes == "-y" ]]; then | |
| echo "🛑👍🛑 !!! skipping question !!! 🛑👍🛑" | |
| else |
| /** | |
| * Simple Node.js script to turn a specific page on a Google Sheet | |
| * into a JSON object for the main purpose of HTML Templating. | |
| * | |
| * @author jonobr1 / http://jonobr1.com | |
| * | |
| */ | |
| var https = require('https'); | |
| var path = require('path'); |