Hello Rails React One App

📗 Table of Contents

📖 Hello Rails React One App

Hello Rails React One App is a template demonstration with a simple API, on how to write a Full-Stack Web application with Frontend React JS and Backend Ruby on Rails

🛠 Built With

Tech Stack

Server
  • React
  • Rails
  • Database
  • Postgres
  • Key Features

    • Shows a random Greeting to the user

    (back to top)

    💻 Getting Started

    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:

      git git@github.com:marvin-nyalik/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

      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:

      cd BudgetApp
      bundle install

    it will install the required gems for running the project

    Usage

    to use this project:

       rails server -p 3000

    it will run the server on localhost:3000

    (back to top)

    👥 Author

    👤 Ikonde Nekemiah Arnold

    (back to top)

    🔭 Future Features

    • Add User Interaction

    (back to top)

    🤝 Contributing

    Contributions, issues, and feature requests are welcome!

    Feel free to check the issues page.

    (back to top)

    ⭐️ Show your support

    If you like this project you can share this project to your friend

    (back to top)

    🙏 Acknowledgments

    • I'd like to thank Microverse for defining the project requirements

    (back to top)

    📝 License

    This project is MIT licensed.

    (back to top)