This is a basic course manager that allows you to edit and add teachers, students, and courses. It is built using Ruby on Rails and podman.
1 - Clone the repository:
git clone https://github.com/MonRos3/rails-course-manager.git2 - cd into rails-course-manager.
3 - enter podman machine start into the terminal.
4 - start rails container in podman. Enter the following into the terminal:
podman run -it -p 3000:3000 -v ${PWD}:/home drsjb80/rails-dev5 - the terminal prompt should change, indicating you are in the container. Enter the following into terminal to install dependencies:
bundle install6 - set up the database:
rails db:migrate
rails db:seed7 - build Tailwind CSS:
rails tailwindcss:build8 - start the rails server by entering the following into terminal:
rails server -b 0.0.0.09 - navigate to http://localhost:3000 to view the React app.