Skip to content

Latest commit

 

History

History
61 lines (40 loc) · 1.43 KB

README.md

File metadata and controls

61 lines (40 loc) · 1.43 KB

memoit

memoit

Overview

memoit is a to-do list manager web application made with React and Ruby on Rails.

Some of memoit's features include:

  • 📝 Creating, editing, and deleting tasks
  • ⚡ Tagging system to categorize tasks efficiently
  • 📱 Mobile-responsive design
  • 🔒 User authentication

memoit was created as part of an application for Computing for Voluntary Welfare Organisations.

Start using memoit now!

Site Map

Getting Started

  1. memoit requires Ruby 3.0.3. To install and manage Ruby versions, you can use rbenv.
$ brew install rbenv ruby-build
$ rbenv install 3.0.3
  1. Download Bundler to install dependencies.
$ gem install bundler
  1. Install ruby dependencies.
$ bundle install
  1. Create the database and run migrations.
$ rails db:create
$ rails db:migrate
  1. Run the server locally at localhost:3000.
$ rails server

Congratulations! You have successfully set up memoit.