Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/timriley/hanami-2-minimal-application-template
Minimal Hanami 2 application starter template — good for non-web apps!
https://github.com/timriley/hanami-2-minimal-application-template
Last synced: 2 months ago
JSON representation
Minimal Hanami 2 application starter template — good for non-web apps!
- Host: GitHub
- URL: https://github.com/timriley/hanami-2-minimal-application-template
- Owner: timriley
- Created: 2020-10-03T11:09:38.000Z (about 4 years ago)
- Default Branch: main
- Last Pushed: 2020-10-03T11:20:56.000Z (about 4 years ago)
- Last Synced: 2024-10-09T22:57:21.226Z (2 months ago)
- Language: Ruby
- Size: 11.7 KB
- Stars: 10
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.app.md
- Funding: .github/FUNDING.yml
Awesome Lists containing this project
README
# AppPrototype
This is an Hanami 2 application.
## Local development
## Requirements
The scripts below require [Homebrew][brew] and [asdf][asdf] installed, and
[asdf added to your shell][asdf-shell].If you prefer different tools, remove `Brewfile` and `.tool-versions`, and adapt
the `script/` files (mentioned below) to use your preferred tools.[brew]: https://brew.sh
[asdf]: https://asdf-vm.com
[asdf-shell]: https://asdf-vm.com/#/core-manage-asdf-vm?id=add-to-your-shell### Installation
After cloning, run:
```
./script/bootstrap
```### Running supporting services
To start the supporting services, run:
```
./script/support
```These must be running before completing the following steps.
### Setup
After the supporting services have started, run:
```
./script/setup
```### After pulling changes
After pulling changes from the remote, run:
```
./script/update
```