New website built on Bridgetown
Find a file
Dan Barber 23b719651e Lot's of updates
- Added new pedals header image
- Added games page
- Added collections section
- Updated 500 page (not that you should ever see it)
2025-10-15 19:26:20 -05:00
bin Initial commit 2025-06-03 20:19:12 -05:00
config Initial commit 2025-06-03 20:19:12 -05:00
frontend Lot's of updates 2025-10-15 19:26:20 -05:00
plugins JSON feeds, OG data 2025-06-25 23:30:13 -05:00
scripts Photos! 2025-06-14 23:00:42 -05:00
server Initial commit 2025-06-03 20:19:12 -05:00
src Lot's of updates 2025-10-15 19:26:20 -05:00
.gitignore Add onedark colors 2025-06-16 21:51:08 -05:00
.ruby-version Initial commit 2025-06-03 20:19:12 -05:00
.yarnrc.yml Add Yarn 2025-06-08 15:57:30 -05:00
bridgetown.config.yml Add base URL 2025-06-25 23:36:42 -05:00
config.ru Initial commit 2025-06-03 20:19:12 -05:00
Dockerfile Run in production 2025-06-25 23:46:06 -05:00
esbuild.config.js Fix plasmatron shader 2025-06-15 13:05:13 -05:00
Gemfile Add syntax highlighting 2025-06-16 21:27:24 -05:00
Gemfile.lock Add syntax highlighting 2025-06-16 21:27:24 -05:00
jsconfig.json Initial commit 2025-06-03 20:19:12 -05:00
mise.toml Add Yarn 2025-06-08 15:57:30 -05:00
package.json Add Turbo! 🏎️ 2025-06-05 10:40:38 -05:00
postcss.config.js Initial commit 2025-06-03 20:19:12 -05:00
Rakefile Initial commit 2025-06-03 20:19:12 -05:00
README.md Initial commit 2025-06-03 20:19:12 -05:00
yarn.lock Add Yarn 2025-06-08 15:57:30 -05:00

Bridgetown Website README

Welcome to your new Bridgetown website! You can update this README file to provide additional context and setup information for yourself or other contributors.

Table of Contents

Prerequisites

Install

cd bridgetown-site-folder
bundle install && yarn install

Learn more: Bridgetown Getting Started Documentation.

Development

To start your site in development mode, run bin/bridgetown start and navigate to localhost:4000!

Use a theme or add some plugins to get started quickly.

Commands

# running locally
bin/bridgetown start

# build & deploy to production
bin/bridgetown deploy

# load the site up within a Ruby console (IRB)
bin/bridgetown console

Learn more: Bridgetown CLI Documentation

Deployment

You can deploy Bridgetown sites on hosts like Render or Vercel as well as traditional web servers by simply building and copying the output folder to your HTML root.

Read the Bridgetown Deployment Documentation for more information.

Contributing

If repo is on GitHub:

  1. Fork it
  2. Clone the fork using git clone to your local development machine.
  3. Create your feature branch (git checkout -b my-new-feature)
  4. Commit your changes (git commit -am 'Add some feature')
  5. Push to the branch (git push origin my-new-feature)
  6. Create a new Pull Request