https://github.com/patrick-rush/react-drip-backend
https://github.com/patrick-rush/react-drip-backend
Last synced: 10 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/patrick-rush/react-drip-backend
- Owner: patrick-rush
- Created: 2021-03-15T21:55:40.000Z (over 5 years ago)
- Default Branch: main
- Last Pushed: 2021-06-06T20:42:30.000Z (about 5 years ago)
- Last Synced: 2025-01-12T10:47:49.105Z (over 1 year ago)
- Language: Ruby
- Size: 83 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# DRIP - Back End
Drip is a web application that can help you manage your houseplants. You can schedule watering or fertilizing events, automatically schedule future ones when you water your plant, keep notes, and adjust watering frequency, as well as record your plant's name, species, and location.
## Installation
To run this app, fork and clone this repo and run
```bash
$ rails db:migrate
```
Currently the app is configured to be able to have users in a future version, but for now, you can create a `.env` file in the root directory and add to it
```bash
PASSWORD=
```
and then run
```bash
$ rails db:seed
```
which will seed the database with one user-you! You are also welcome to set the password in the seed file itself if you prefer.
Devise is already configured and will be implemented in a future version.
Once set up, run
```bash
$ rails s
```
to start the server.
## Front End
The front end repo can be found [here](https://github.com/patrick-rush/react-drip-frontend).
Fork and clone then follow the instructions in that repository's README.
## Roadmap
Future versions of this app may include the following:
* Multi-user interface
## Versions
ruby - 2.6.1
rails - 6.0.3.4
## Contributing
You are welcome to submit pull requests as you see fit.
## License
[MIT](https://choosealicense.com/licenses/mit/)
## Info
This project was created for the React portion of Flatiron School's Software Engineering program. Thank you for checking it out!