https://github.com/bergpb/justnotethis
Todo app made with Ruby and Sinatra.
https://github.com/bergpb/justnotethis
Last synced: 3 months ago
JSON representation
Todo app made with Ruby and Sinatra.
- Host: GitHub
- URL: https://github.com/bergpb/justnotethis
- Owner: bergpb
- Created: 2018-12-31T03:06:02.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2023-03-16T05:50:34.000Z (over 3 years ago)
- Last Synced: 2024-04-14T03:49:30.306Z (about 2 years ago)
- Language: Ruby
- Size: 516 KB
- Stars: 3
- Watchers: 1
- Forks: 0
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
### JustNoteThis
[](https://travis-ci.org/bergpb/justnotethis)
[](https://github.com/bergpb/justnotethis/actions)
[](https://requires.io/github/bergpb/justnotethis/requirements/?branch=master)
[](https://codecov.io/gh/bergpb/justnotethis)
[](https://codeclimate.com/github/bergpb/justnotethis/maintainability)
- A note app made with Ruby and Sinatra.
- See demo here: [https://justnotethis.herokuapp.com](https://justnotethis.herokuapp.com).
- You can use user: justnotethis and password: justnotethis to test application.
- Using `rbenv` for ruby version management: [https://github.com/rbenv/rbenv](https://github.com/rbenv/rbenv)
Instructions:
- Clone this app,
- Enter in project folder,
- Set default ruby: ```rvm use ruby-2.6.5```,
- Install dependencies with ```bundle```,
- Run db migrations and seeders ```make migrate```,
- Start app in development mode: ```make serve```.
Generating a new migration:
- ```rake db:create_migration NAME=name_of_migration```,
- Edit file created in db/migrate/,
- Run: ```rake db:migrate```,
Running tests:
- Running tests: ```make test```