https://github.com/ampaire/re-former
https://github.com/ampaire/re-former
Last synced: 7 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/ampaire/re-former
- Owner: ampaire
- Created: 2019-12-20T19:48:00.000Z (over 5 years ago)
- Default Branch: development
- Last Pushed: 2023-03-08T20:27:12.000Z (over 2 years ago)
- Last Synced: 2025-04-07T15:49:08.567Z (2 months ago)
- Language: Ruby
- Size: 1.24 MB
- Stars: 1
- Watchers: 2
- Forks: 1
- Open Issues: 17
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Re-former
This project gave us a chance to actually build some forms, both using nearly-pure HTML and then graduating to using the helper methods that Rails provides. The full project requirements can be found in the [Odin](https://www.theodinproject.com/courses/ruby-on-rails/lessons/forms)
## License
All source code in the [Ruby on Rails Tutorial](https://www.railstutorial.org/)
is available jointly under the MIT License and the Beerware License. See
[LICENSE.md](LICENSE.md) for details.## Getting started
To get started with the app, clone the repo and then install the needed gems:
```
$ bundle install --without production
```Next, migrate the database:
```
$ rails db:migrate
```Finally, run the test suite to verify that everything is working correctly:
```
$ rails test
```If the test suite passes, you'll be ready to run the app in a local server:
```
$ rails server
```## Collaborators
- Raymond Oluoch- Github-> [@ampaire](https://github.com/ampaire)
- Twitter-> [@AmpaPhem](https://twitter.com/AmpaPhem)
- LinkedIn-> [Ampaire Phemia](https://www.linkedin.com/in/ampaire-phemia-b41619181)## Acknowledgements
For more information, see the[Odin](https://www.theodinproject.com/courses/ruby-on-rails/lessons/forms)
[*Ruby on Rails Tutorial* book](https://www.railstutorial.org/book).