https://github.com/aziflaj/minerva
Very basic MVC framework written in Ruby
https://github.com/aziflaj/minerva
mvc-framework ruby
Last synced: 3 months ago
JSON representation
Very basic MVC framework written in Ruby
- Host: GitHub
- URL: https://github.com/aziflaj/minerva
- Owner: aziflaj
- Created: 2017-03-04T01:15:06.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2023-03-16T03:47:05.000Z (over 3 years ago)
- Last Synced: 2024-05-01T04:44:54.486Z (about 2 years ago)
- Topics: mvc-framework, ruby
- Language: Ruby
- Homepage:
- Size: 36.1 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Minerva
Very basic MVC framework written in Ruby
## How to run
Clone the repo and install the necessary gems:
```bash
$ git clone https://github.com/aziflaj/minerva
$ bundle install --without production
```
Run the rack server:
```bash
$ bundle exec guard # Reloads the Rack server when App directory is changed
$ rackup # Just runs the Rack server, nothing is watched
```
The migrations are ran whenever the server starts, so there's no need to manually run anything.