Sha256: 6e7e9cb512b355acb908595026d6d49c4600c2f7acdb3cea501904254b59a5d5

Contents?: true

Size: 1.1 KB

Versions: 5

Compression:

Stored size: 1.1 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 [Klueless - RailsAppGenerator](https://github.com/klueless-io/rails_app_generator) - there are tons of little tweaks to simplify your development workflow.

For more details refer to the [Documentation](https://github.com/klueless-io/rails_app_generator)

## 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

5 entries across 5 versions & 1 rubygems

Version Path
rails_app_generator-0.3.6 templates/README.md.erb
rails_app_generator-0.3.5 templates/README.md.erb
rails_app_generator-0.3.4 templates/README.md.erb
rails_app_generator-0.3.3 templates/README.md.erb
rails_app_generator-0.3.2 templates/README.md.erb