- Ruby 3
- Rails 7
- Postgres Database
- Start the docker containers :
docker-compose -f docker-compose.yml up --build
- Create the database using :
docker-compose run backend rails db:create
- Run the migration files :
docker-compose run backend rails db:migrate
- Ensure postgres is running
- Create the database using :
rails db:create
- Run the migration files :
rails db:migrate
- Start the rails server :
rails serve
- User Creation and Authentication
- Post Create, Update, Read and Destroy
- Like and Dislike posts
- Commenting on a post ...
...