Sha256: f4fef6d6408192ea5ad7b7ffe630b7cfd96ad24961c13a6f98447684d60e6518
Contents?: true
Size: 1.07 KB
Versions: 86
Compression:
Stored size: 1.07 KB
Contents
# <%= app_name.humanize %> ## Running your App The simplest way to start this up is by using [docker-compose](https://docs.docker.com/compose/): ```bash docker-compose up ``` ``` rails db:setup rails db:migrate rails server ``` Open your browser on [localhost:3000](http://localhost:3000). ## Development This app was generated using [Schienenzeppelin](https://github.com/hschne/schienenzeppelin) - there are tons of little tweaks to simplify your development workflow. For more details refer to the [Documentation](https://github.com/hschne/schienenzeppelin) ## Deployment Deploy this application using Capistrano. Make sure you have a server set up and edit [deploy.rb](./config/deploy.rb) and [config/production.rb](./config/deploy/production.rb). ``` ruby # deploy.rb set :repo_url, "git@github.com:user/your-project.git" # production.rb server "myserver.com", user: "deploy", roles: %w{app db web} ``` Then run: ```bash cap production deploy ``` For more information on how to prepare a server for deployment you can follow [this guide](https://gorails.com/deploy/ubuntu/20.04).
Version data entries
86 entries across 86 versions & 2 rubygems