├── .dockerignore ├── .github └── workflows │ └── main.yml ├── .gitignore ├── .ruby-version ├── Dockerfile ├── Gemfile ├── Gemfile.lock ├── Procfile ├── README.md ├── backend ├── Rakefile ├── bin │ └── rails ├── config │ ├── application.rb │ ├── boot.rb │ ├── initializers │ │ ├── cors.rb │ │ └── the_time.rb │ └── routes.rb ├── nano_controller.rb ├── products_controller.rb └── shared │ ├── example.rb │ └── page_renderer.rb ├── bridgetown.config.yml ├── config.ru ├── fly.toml ├── frontend ├── javascript │ └── index.js └── styles │ └── index.scss ├── package.json ├── plugins ├── builders │ └── .keep ├── rails_support.rb └── site_builder.rb ├── run_docker.sh ├── src ├── 404.html ├── _components │ ├── footer.liquid │ ├── head.liquid │ └── navbar.liquid ├── _data │ └── site_metadata.yml ├── _layouts │ ├── default.liquid │ ├── home.liquid │ ├── page.liquid │ ├── post.liquid │ └── product.erb ├── _partials │ └── _product.erb ├── _posts │ └── 2020-10-16-welcome-to-bridgetown.md ├── _products │ └── toothpaste.md ├── about.md ├── favicon.ico ├── index.md ├── posts.md └── products.md ├── start.js ├── sync.js ├── webpack.config.js └── yarn.lock /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredcwhite/rails-nano/HEAD/.dockerignore -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredcwhite/rails-nano/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredcwhite/rails-nano/HEAD/.gitignore -------------------------------------------------------------------------------- /.ruby-version: -------------------------------------------------------------------------------- 1 | ruby-2.7.0 2 | -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredcwhite/rails-nano/HEAD/Dockerfile -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredcwhite/rails-nano/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredcwhite/rails-nano/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- 1 | web: bundle exec puma -p ${PORT:-3000} -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredcwhite/rails-nano/HEAD/README.md -------------------------------------------------------------------------------- /backend/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredcwhite/rails-nano/HEAD/backend/Rakefile -------------------------------------------------------------------------------- /backend/bin/rails: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredcwhite/rails-nano/HEAD/backend/bin/rails -------------------------------------------------------------------------------- /backend/config/application.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredcwhite/rails-nano/HEAD/backend/config/application.rb -------------------------------------------------------------------------------- /backend/config/boot.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredcwhite/rails-nano/HEAD/backend/config/boot.rb -------------------------------------------------------------------------------- /backend/config/initializers/cors.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredcwhite/rails-nano/HEAD/backend/config/initializers/cors.rb -------------------------------------------------------------------------------- /backend/config/initializers/the_time.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredcwhite/rails-nano/HEAD/backend/config/initializers/the_time.rb -------------------------------------------------------------------------------- /backend/config/routes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredcwhite/rails-nano/HEAD/backend/config/routes.rb -------------------------------------------------------------------------------- /backend/nano_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredcwhite/rails-nano/HEAD/backend/nano_controller.rb -------------------------------------------------------------------------------- /backend/products_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredcwhite/rails-nano/HEAD/backend/products_controller.rb -------------------------------------------------------------------------------- /backend/shared/example.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredcwhite/rails-nano/HEAD/backend/shared/example.rb -------------------------------------------------------------------------------- /backend/shared/page_renderer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredcwhite/rails-nano/HEAD/backend/shared/page_renderer.rb -------------------------------------------------------------------------------- /bridgetown.config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredcwhite/rails-nano/HEAD/bridgetown.config.yml -------------------------------------------------------------------------------- /config.ru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredcwhite/rails-nano/HEAD/config.ru -------------------------------------------------------------------------------- /fly.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredcwhite/rails-nano/HEAD/fly.toml -------------------------------------------------------------------------------- /frontend/javascript/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredcwhite/rails-nano/HEAD/frontend/javascript/index.js -------------------------------------------------------------------------------- /frontend/styles/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredcwhite/rails-nano/HEAD/frontend/styles/index.scss -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredcwhite/rails-nano/HEAD/package.json -------------------------------------------------------------------------------- /plugins/builders/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plugins/rails_support.rb: -------------------------------------------------------------------------------- 1 | Bridgetown::Site.attr_accessor :controller -------------------------------------------------------------------------------- /plugins/site_builder.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredcwhite/rails-nano/HEAD/plugins/site_builder.rb -------------------------------------------------------------------------------- /run_docker.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredcwhite/rails-nano/HEAD/run_docker.sh -------------------------------------------------------------------------------- /src/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredcwhite/rails-nano/HEAD/src/404.html -------------------------------------------------------------------------------- /src/_components/footer.liquid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredcwhite/rails-nano/HEAD/src/_components/footer.liquid -------------------------------------------------------------------------------- /src/_components/head.liquid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredcwhite/rails-nano/HEAD/src/_components/head.liquid -------------------------------------------------------------------------------- /src/_components/navbar.liquid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredcwhite/rails-nano/HEAD/src/_components/navbar.liquid -------------------------------------------------------------------------------- /src/_data/site_metadata.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredcwhite/rails-nano/HEAD/src/_data/site_metadata.yml -------------------------------------------------------------------------------- /src/_layouts/default.liquid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredcwhite/rails-nano/HEAD/src/_layouts/default.liquid -------------------------------------------------------------------------------- /src/_layouts/home.liquid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredcwhite/rails-nano/HEAD/src/_layouts/home.liquid -------------------------------------------------------------------------------- /src/_layouts/page.liquid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredcwhite/rails-nano/HEAD/src/_layouts/page.liquid -------------------------------------------------------------------------------- /src/_layouts/post.liquid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredcwhite/rails-nano/HEAD/src/_layouts/post.liquid -------------------------------------------------------------------------------- /src/_layouts/product.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredcwhite/rails-nano/HEAD/src/_layouts/product.erb -------------------------------------------------------------------------------- /src/_partials/_product.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredcwhite/rails-nano/HEAD/src/_partials/_product.erb -------------------------------------------------------------------------------- /src/_posts/2020-10-16-welcome-to-bridgetown.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredcwhite/rails-nano/HEAD/src/_posts/2020-10-16-welcome-to-bridgetown.md -------------------------------------------------------------------------------- /src/_products/toothpaste.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredcwhite/rails-nano/HEAD/src/_products/toothpaste.md -------------------------------------------------------------------------------- /src/about.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredcwhite/rails-nano/HEAD/src/about.md -------------------------------------------------------------------------------- /src/favicon.ico: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredcwhite/rails-nano/HEAD/src/index.md -------------------------------------------------------------------------------- /src/posts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredcwhite/rails-nano/HEAD/src/posts.md -------------------------------------------------------------------------------- /src/products.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredcwhite/rails-nano/HEAD/src/products.md -------------------------------------------------------------------------------- /start.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredcwhite/rails-nano/HEAD/start.js -------------------------------------------------------------------------------- /sync.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredcwhite/rails-nano/HEAD/sync.js -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredcwhite/rails-nano/HEAD/webpack.config.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredcwhite/rails-nano/HEAD/yarn.lock --------------------------------------------------------------------------------