├── .DS_Store ├── .circleci └── config.yml ├── .dockerignore ├── .github └── ISSUE_TEMPLATE.md ├── .gitignore ├── .ruby-version ├── Dockerfile ├── Gemfile ├── Gemfile.lock ├── LICENSE ├── Procfile ├── README.md ├── app.json ├── docker_push ├── index.html ├── render.yaml └── web.rb /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/example-terminal-backend/HEAD/.DS_Store -------------------------------------------------------------------------------- /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/example-terminal-backend/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.dockerignore: -------------------------------------------------------------------------------- 1 | .env 2 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/example-terminal-backend/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .env -------------------------------------------------------------------------------- /.ruby-version: -------------------------------------------------------------------------------- 1 | 3.1.2 2 | -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/example-terminal-backend/HEAD/Dockerfile -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/example-terminal-backend/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/example-terminal-backend/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/example-terminal-backend/HEAD/LICENSE -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- 1 | web: bundle exec ruby web.rb -p $PORT -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/example-terminal-backend/HEAD/README.md -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/example-terminal-backend/HEAD/app.json -------------------------------------------------------------------------------- /docker_push: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/example-terminal-backend/HEAD/docker_push -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/example-terminal-backend/HEAD/index.html -------------------------------------------------------------------------------- /render.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/example-terminal-backend/HEAD/render.yaml -------------------------------------------------------------------------------- /web.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/example-terminal-backend/HEAD/web.rb --------------------------------------------------------------------------------