https://github.com/alierpm/hellorails
A simple Ruby on Rails 'Hellorails!' project to help beginners learn the basics of the framework. Follow the README to set up and run the application, covering Ruby version, system dependencies, configuration, database setup, testing, services, deployment instructions, and more. Happy coding!
https://github.com/alierpm/hellorails
postgresql ruby ruby-gem ruby-on-rails
Last synced: 2 months ago
JSON representation
A simple Ruby on Rails 'Hellorails!' project to help beginners learn the basics of the framework. Follow the README to set up and run the application, covering Ruby version, system dependencies, configuration, database setup, testing, services, deployment instructions, and more. Happy coding!
- Host: GitHub
- URL: https://github.com/alierpm/hellorails
- Owner: AlierPM
- Created: 2024-01-09T17:43:37.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-01-09T17:45:00.000Z (over 1 year ago)
- Last Synced: 2025-02-04T13:44:14.554Z (4 months ago)
- Topics: postgresql, ruby, ruby-gem, ruby-on-rails
- Language: Ruby
- Homepage:
- Size: 23.4 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# README
This README provides essential information to get the 'hellorails' application up and running. It covers various aspects, including Ruby version, system dependencies, configuration, database setup, testing, services, deployment instructions, and more.
## Getting Started
Follow these guidelines to set up and run the 'hellorails' application.
### Prerequisites
- **Ruby version:** 3.2.2
### System Dependencies
Ensure the following system dependencies are installed:
- Postgres database
### Configuration
1. **Clone the repository:**
```bash
git clone https://github.com/your-username/hellorails.git
```2. **Navigate to the project directory:**
```bash
cd hellorails
```### Database Setup
1. **Initialize your Postgres database.**
```bash
# Modify your database configuration in config/database.yml
rake db:create
rake db:migrate
```### How to Run
1. **Start the Rails server:**
```bash
rails server
```2. **Visit http://localhost:3000/ in your browser.**
### Test Suite
Run the test suite using:
```bash
rails test