gumroad

(β˜… 9,605)

See what sticks

Showing a partial file list β€” download the zip above to see everything.

  • .claudeignore
  • .cursorignore
  • .dockerignore
  • .env.development
  • .env.example
  • .env.production.example
  • .env.test
  • .git-blame-ignore-revs
  • .gitattributes
  • .gitignore
  • .node-version
  • .npmrc
  • .pr_body.md
  • .prettierignore
  • .prettierrc
  • .rspec
  • .rubocop.yml
  • .ruby-version
  • AGENTS.md
  • CLAUDE.md
  • CONTRIBUTING.md
  • Gemfile
  • Gemfile.lock
  • LICENSE.md
  • Makefile
  • Procfile.debug
  • Procfile.dev
  • Rakefile
  • README.md
  • SECURITY.md
  • TRADEMARK_GUIDELINES.md

πŸš€ Installation Guide

1. Get the code
git clone https://github.com/antiwork/gumroad

Downloads the entire project code from GitHub to your computer.

cd gumroad

Moves into the project folder you just downloaded.

2. Official Install Script

Easy Recommended
Prerequisites
  • Homebrew A package manager for macOS/Linux.
  • Ruby Ruby is required to use gem.
brew install mysql@8.0 percona-toolkit

Installs the pre-built package via Homebrew β€” no source build required.

brew install openssl

Installs the pre-built package via Homebrew β€” no source build required.

gem install bundler

Installs the package published on RubyGems directly.

gem install dotenv

Installs the package published on RubyGems directly.

βœ… After installing, open a new terminal and run the program's version command (e.g. --version) to confirm it worked.

Pulled directly from this repo's README.

3. Ruby

Easy
Prerequisites
  • Git Needed to download the project code from GitHub.
  • Ruby Ruby is required to use the bundle command.
bundle config --global build.mysql2 --with-opt-dir="$(brew --prefix openssl)"

Type this command into your terminal and run it.

bundle install

Installs the Ruby libraries listed in the Gemfile.

INITIALIZE_RPUSH_APPS=true bundle exec rpush start -e development -f

Type this command into your terminal and run it.

βœ… If bundle install finishes without errors, continue with the run command from the README (e.g. rails server).

Pulled directly from this repo's README.

4. Make

Medium
Prerequisites
  • Git Needed to download the project code from GitHub.
  • Make Usually pre-installed on Linux/macOS. On Windows, install separately (e.g. via MSYS2 or WSL).
make local

Compiles the code based on the generated build configuration to produce an executable.

make local # start Docker services (db, Redis, etc.)

Compiles the code based on the generated build configuration to produce an executable.

βœ… If it finishes without errors, it worked. Try running the generated executable directly.

Pulled directly from this repo's README.

// repository documentation