New website built on Bridgetown
- Added new pedals header image - Added games page - Added collections section - Updated 500 page (not that you should ever see it) |
||
|---|---|---|
| bin | ||
| config | ||
| frontend | ||
| plugins | ||
| scripts | ||
| server | ||
| src | ||
| .gitignore | ||
| .ruby-version | ||
| .yarnrc.yml | ||
| bridgetown.config.yml | ||
| config.ru | ||
| Dockerfile | ||
| esbuild.config.js | ||
| Gemfile | ||
| Gemfile.lock | ||
| jsconfig.json | ||
| mise.toml | ||
| package.json | ||
| postcss.config.js | ||
| Rakefile | ||
| README.md | ||
| yarn.lock | ||
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:
- Fork it
- Clone the fork using
git cloneto your local development machine. - Create your feature branch (
git checkout -b my-new-feature) - Commit your changes (
git commit -am 'Add some feature') - Push to the branch (
git push origin my-new-feature) - Create a new Pull Request