https://github.com/microverseinc/docker-workshop-ror
https://github.com/microverseinc/docker-workshop-ror
Last synced: 8 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/microverseinc/docker-workshop-ror
- Owner: microverseinc
- Created: 2023-05-18T11:28:28.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2023-06-01T13:46:26.000Z (about 3 years ago)
- Last Synced: 2025-03-12T00:33:42.874Z (over 1 year ago)
- Language: Ruby
- Size: 32.2 KB
- Stars: 1
- Watchers: 5
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# 🧱 Sample project - Ruby on Rails

## ❓ Description
This sample project is part of the workshop "Containerization with Docker" by Microverse. Find out more about the workshop:
[👉 "Containerization with Docker" workshop](https://github.com/microverseinc/docker-workshop)
## 🛫 Getting Started
### Prerequisites
1. Verify if Ruby is installed
```sh
ruby -v
```
2. Verify if Rails is installed
```sh
rails -v
```
### Installing
1. Clone the project to your machine:
```sh
git clone https://github.com/microverseinc/docker-workshop-ror
```
2. Install dependencies
```sh
bundle install
```
### Executing program
1. Create a database and migrate schemas
```sh
rake db:create
rake db:migrate
```
2. Run the application
```sh
rails s
```
## 🙋🏽♀️ Help
If you need any help, send a message to the Slack channel [#modern-ci-cd-with-docker-demo-workshop](https://microverseupskill.slack.com/archives/C059WD1U06T)!