- 📖 About the Project
- 💻 Getting Started
- 👤 Author
- 🤝 Contributing
- ⭐️ Show your support
- 🙏 Acknowledgements
- ❓ FAQ
- 📝 License
Client
Database
- Display random Greeting
To get a local copy up and running, follow these steps.
In order to run this project you need:
Code Editor (Vs Code)
Terminal
Install ruby on your computer
Install rails on your compute
Clone this repository to your desired folder:
git clone https://github.com/Yonashenok/hello-rails-react.git
cd hello-rails-react
You need to setup database for these project
development = your_dataabase_dev
test = your_datasebase_test
production = your_datasebase_prod
or you can use your own database and change the config/database.yml
default: &default
adapter: postgresql
encoding: unicode
pool: 5
development:
<<: *default
database: [your_database_for_development]
username: [your_username]
password: [your_password]
host: localhost
port: 5432
test:
<<: *default
database: [your_database_for_test]
username: [your_username]
password: [your_password]
production:
<<: *default
database: [your_database_for_production]
Install this project with:
bundle install
npm install
or
yarn install
it will install the required gemfile for running the project
To run the project, execute the following command on Your Git Bash Terminal:
bin/dev
To run tests on linters, run the following command:
npx stylelint "**/*.{css,scss}"
rubocop
👤 Yonas Henok
- GitHub: @YonasHenok
- Twitter: @YonasHenok3
- LinkedIn: Yonas Henok
- Add More Functionality
Contributions, issues, and feature requests are welcome!
Feel free to check the issues page.
If you like this project please give it a Start ⭐️.
- Project from Microverse FULL-STACK CAPSTONE Module.
- Thanks to the Microverse team for the great curriculum.
- Thanks to the Code Reviewer(s) for the insightful feedbacks.
- A great thanks to My coding partner(s), morning session team, and standup team for their contributions.
-
Can I Fork it and Imporove on it
- Yes, You can, feel free.
-
Can I improve the repository, and my changes will be accepted if they are good?
- Yes please, nice ideas are welcome, please.
This project is MIT licensed.