Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/raquellima7/friday_lunch_team
Friday Lunch Team is a Rails system to include employees in lunches according to the number of employees, allowing the inclusion of a new employee. When registering an employee, he/she must inform his/her unit and the preferred restaurant. By clicking on "New Blind Date" you must inform the day and the system will automatically sort the employees into groups and choose a leader. On the page to view all Blind Dates, the day will appear, and, clicking to view, you can see the separation by teams, its leader, employees, and restaurant (which is the restaurant informed by the leader).
https://github.com/raquellima7/friday_lunch_team
bootstrap postgresql rspec ruby-on-rails
Last synced: about 5 hours ago
JSON representation
Friday Lunch Team is a Rails system to include employees in lunches according to the number of employees, allowing the inclusion of a new employee. When registering an employee, he/she must inform his/her unit and the preferred restaurant. By clicking on "New Blind Date" you must inform the day and the system will automatically sort the employees into groups and choose a leader. On the page to view all Blind Dates, the day will appear, and, clicking to view, you can see the separation by teams, its leader, employees, and restaurant (which is the restaurant informed by the leader).
- Host: GitHub
- URL: https://github.com/raquellima7/friday_lunch_team
- Owner: RaquelLima7
- Created: 2022-05-01T20:17:02.000Z (over 2 years ago)
- Default Branch: master
- Last Pushed: 2022-06-27T22:42:01.000Z (over 2 years ago)
- Last Synced: 2023-09-08T00:35:18.681Z (about 1 year ago)
- Topics: bootstrap, postgresql, rspec, ruby-on-rails
- Language: Ruby
- Homepage:
- Size: 2.79 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
Friday Lunch Team
## Project
Friday Lunch Team is a Rails system to include employees in lunches according to the number of employees, allowing the inclusion of a new employee. When registering an employee, he/she must inform his/her unit and the preferred restaurant. By clicking on "New Blind Date" you must inform the day and the system will automatically sort the employees into groups and choose a leader. On the page to view all Blind Dates, the day will appear, and, clicking to view, you can see the separation by teams, its leader, employees, and restaurant (which is the restaurant informed by the leader).
## Screenshot
![](https://github.com/RaquelLima7/friday_lunch_team/blob/master/app/assets/images/friday-lunch-team.gif)
## Stack the Project- **Ruby on Rails**
- **Bootstrap**
- **PostgreSQL**
- **Rspec**## Building application
First you must have:
1. Postgres installed.
2. Ruby >= 2.7.3 installed.
As soon as you have everything done you can follow
### 1. Building everything
If you want to rock and create your dev environment and data, it's possible to go through the usual way:
1. And to *bundle* it with command:
```
bundle install
```2. Create databases
```
rails db:create
```3. Run migrations
```
rails db:migrate
```
4. Run to populate the database with the command:```
rails db:seed
```5. Run tests
```
rspec
```