Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/moekiorg/clean-architecture-minimal-app
A minimal Clean Architecture app
https://github.com/moekiorg/clean-architecture-minimal-app
clean-architecture hanami rom ruby sinatra
Last synced: 3 days ago
JSON representation
A minimal Clean Architecture app
- Host: GitHub
- URL: https://github.com/moekiorg/clean-architecture-minimal-app
- Owner: moekiorg
- Created: 2022-10-31T23:46:07.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2022-11-01T01:44:48.000Z (about 2 years ago)
- Last Synced: 2024-12-17T23:46:54.068Z (5 days ago)
- Topics: clean-architecture, hanami, rom, ruby, sinatra
- Language: Ruby
- Homepage:
- Size: 2.93 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Clean Architecture Minimal App
```ruby
gem "hanami-utils" # interactor
gem "sinatra"
gem "sinatra-contrib"
gem "puma"
gem "rom"
gem "rom-repository"
gem "rom-sql"
gem "sqlite3"
``````ruby
bundle exec rake -T
rake db:create # Create DB
rake db:migrate # Migrate DB
rake db:seed # Create DB Seed
rake dev # Start dev server
``````
GET /users/1
```