Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ansaribrahim/hello-rails-react
This repository is a comprehensive guide and codebase for building a web application that seamlessly combines the power of Ruby on Rails and React. It's a step-by-step project that walks you through creating a web application from scratch, incorporating features such as greetings, database integration, routing, and state management.
https://github.com/ansaribrahim/hello-rails-react
linters rails react redux rubocop ruby store webpack
Last synced: 26 days ago
JSON representation
This repository is a comprehensive guide and codebase for building a web application that seamlessly combines the power of Ruby on Rails and React. It's a step-by-step project that walks you through creating a web application from scratch, incorporating features such as greetings, database integration, routing, and state management.
- Host: GitHub
- URL: https://github.com/ansaribrahim/hello-rails-react
- Owner: AnsarIbrahim
- License: mit
- Created: 2023-10-23T10:04:04.000Z (about 1 year ago)
- Default Branch: dev
- Last Pushed: 2023-10-23T19:19:10.000Z (about 1 year ago)
- Last Synced: 2024-10-10T00:57:41.742Z (about 1 month ago)
- Topics: linters, rails, react, redux, rubocop, ruby, store, webpack
- Language: Ruby
- Homepage:
- Size: 188 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Hello-rails-react
## 📗 Table of Contents
- [📖 Budget app ](#-blog-app-)
- [🛠 Built With ](#-built-with-)
- [Tech Stack ](#tech-stack-)
- [Key Features ](#key-features-)
- [💻 Getting Started ](#-getting-started-)
- [Prerequisites](#prerequisites)
- [Setup](#setup)
- [Install](#install)
- [Usage](#usage)
- [👥 Author ](#-author-)
- [🔭 Future Features ](#-future-features-)
- [🤝 Contributing ](#-contributing-)
- [⭐️ Show your support ](#️-show-your-support-)
- [🙏 Acknowledgments ](#-acknowledgments-)
- [📝 License ](#-license-)**Hello Rails React One App** This repository is a comprehensive guide and codebase for building a web application that seamlessly combines the power of Ruby on Rails and React. It's a step-by-step project that walks you through creating a web application from scratch, incorporating features such as greetings, database integration, routing, and state management.
Server
Database
- Shows a random Greeting to the user
To get a local copy up and running, follow these steps.
### Prerequisites
In order to run this project you need:
```
ruby >= 3.2.0
react > 16.3.2
rails >= 7.0
postgres >- 15.3
```
### Setup
Clone this repository to your desired folder:
```bash
git https://github.com/AnsarIbrahim/hello-rails-react.git
```
You need to setup database for these project
```
development = hello_rails_react_app_dev
test = hello_rails_react_app_test
production = hello_rails_react_app_production
```
or you can use your own database and change the ```config/database.yml```
```yml
default: &default
adapter: postgresql
encoding: unicode
pool: 5
username: [your_username]
password: [your_password]
host: localhost
development:
<<: *default
database: [your_database_for_development]
test:
<<: *default
database: [your_database_for_test]
production:
<<: *default
database: [your_database_for_production]
```
### Install
Install this project with:
```bash
cd BudgetApp
bundle install
```
it will install the required gems for running the project
### Usage
to use this project:
```ruby
rails server -p 3000
```
it will run the server on ```localhost:3000```
👤 **Ansar Ibrahim**
- [GitHub](https://github.com/AnsarIbrahim)
- [LinkedIn](https://linkedin.com/in/ansar-ibrahim/)
- [Twitter](https://twitter.com/ansaradheeb)
- Add User Interaction
Contributions, issues, and feature requests are welcome!
Feel free to check the [issues page](https://github.com/AnsarIbrahim/hello-rails-react/issues).
If you like this project you can share this project to your friend
## 🙏 Acknowledgments
- I'd like to thank Microverse for defining the project requirements
This project is [MIT](./LICENSE) licensed.