https://github.com/kirqe/puuci
Issue Tracker sinatra sample app
https://github.com/kirqe/puuci
ruby sinatra
Last synced: 3 months ago
JSON representation
Issue Tracker sinatra sample app
- Host: GitHub
- URL: https://github.com/kirqe/puuci
- Owner: kirqe
- Created: 2020-09-08T10:44:40.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2021-12-11T11:52:22.000Z (over 3 years ago)
- Last Synced: 2025-01-14T03:10:51.082Z (5 months ago)
- Topics: ruby, sinatra
- Language: CSS
- Homepage:
- Size: 2.65 MB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Issue Tracker MVP built with Sinatra

Users can submit projects, issues and comment on issues.
Issues and projects can have files(uploads) attached to them.
When someone submits an issue a toast notification pops up.### How to run
To view emails install [mailcatcher](https://github.com/sj26/mailcatcher):
```
gem install mailcatcher
mailcatcher
open http://127.0.0.1:1080/
```And [foreman](https://github.com/ddollar/foreman) to run the app
```
bundle
yarn
rake db:create db:migrate db:seed
foreman start
```Check the `Procfile`