https://github.com/tsotimus/quick-forge
Quickly set up a new MacBook with everything you need to develop in the JavaScript/TypeScript ecosystem.
https://github.com/tsotimus/quick-forge
bun node setup setuptools zsh
Last synced: 2 months ago
JSON representation
Quickly set up a new MacBook with everything you need to develop in the JavaScript/TypeScript ecosystem.
- Host: GitHub
- URL: https://github.com/tsotimus/quick-forge
- Owner: tsotimus
- Created: 2024-12-16T12:02:04.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-12-25T15:16:33.000Z (over 1 year ago)
- Last Synced: 2025-01-18T16:42:42.902Z (over 1 year ago)
- Topics: bun, node, setup, setuptools, zsh
- Language: Shell
- Homepage:
- Size: 54.7 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Quick Forge
Quickly set up a new MacBook with everything you need to develop in the JavaScript/TypeScript ecosystem.
## Installation
```bash
curl -fsSL https://raw.githubusercontent.com/tsotimus/quick-forge/main/install.sh | bash
```
## Usage
```bash
quickforge
# Dry run (see what would be installed)
quickforge -d
```
## Key Features
- One script to install and configure your development environment.
- Modular installs: choose what you need and skip what you don't.
- Pre-configured aliases for common git commands.
## What does the script do?
- Installs Homebrew, the macOS package manager.
- Installs Git and sets up an SSH key for GitHub.
- Installs Visual Studio Code (VSCode), Cursor, or Zed.
- Installs Node.js (via Fnm)
- Installs Bun (via Bum)
- Installs pnpm (via Corepack)
- Installs Warp, the AI Terminal.
- Lets you choose between installing Zen Browser, Chrome or Arc Browser.
### Git Aliases
```shell
alias g='git' # Shortcut to replace 'git' with 'g'
alias gs='git status' # Check current branch status
alias ga='git add' # Stage specific files
alias gaa='git add --all' # Stage all changes (tracked and untracked)
alias gc='git commit' # Commit staged changes
alias gap='git add --patch' # Interactive staging of changes (hunks)
alias gp='git push' # Push commits to the remote
alias gpl='git pull' # Pull the latest changes from the remote
alias gl='git log' # Show commit history
alias gb='git branch' # List or manage branches
alias gco='git checkout' # Switch branches or restore files
alias gcon='git checkout -b' # Checkout and create a new branch
alias gcm='git commit -m' # Commit with a message inline
alias gundo='git reset --soft HEAD~1' # Undo the last commit (soft reset)
```
## Releases
This is handled by the GitHub Actions workflow.