https://github.com/tinawebdev/eventz
🎟️ Event management application
https://github.com/tinawebdev/eventz
bootstrap4 rails rails6
Last synced: about 2 months ago
JSON representation
🎟️ Event management application
- Host: GitHub
- URL: https://github.com/tinawebdev/eventz
- Owner: tinawebdev
- Created: 2020-03-14T09:40:19.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2023-01-19T17:53:41.000Z (almost 3 years ago)
- Last Synced: 2025-01-03T14:49:58.719Z (about 1 year ago)
- Topics: bootstrap4, rails, rails6
- Language: Ruby
- Homepage:
- Size: 1.15 MB
- Stars: 1
- Watchers: 0
- Forks: 0
- Open Issues: 29
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# EVENTZ
A Ruby on Rails application for creating and managing events.
## Demo
[eventzapp.herokuapp.com](https://eventzapp.herokuapp.com/)
## Versions used
* ruby '2.6.3'
* rails '6.0.2.1'
## Installation
To use the code:
1. Download the repository using the [instruction](https://help.github.com/en/github/creating-cloning-and-archiving-repositories/cloning-a-repository).
2. In the command line go to the directory with the files downloaded.
3. Install required gems. To do that:
* Check if the bundler is installed with the command `gem list bundler`.
* If it is not installed - installed it with the command `gem install bundler`.
* If bundler is already installed, that is perfect. Go to the next step.
* In the directory with the app, to install all necessary gems run:
```
bundle install
```
4. Install all the dependencies listed within package.json in the local node_modules folder:
```
yarn install
```
5. To run migrations:
```
bundle exec rails db:migrate
```
6. To load the data from db/seeds.rb into the database:
```
bundle exec rails db:seed
```