help@rskworld.in +91 93305 39277
RSK World
  • Home
  • Development
    • Web Development
    • Mobile Apps
    • Software
    • Games
    • Project
  • Technologies
    • Data Science
    • AI Development
    • Cloud Development
    • Blockchain
    • Cyber Security
    • Dev Tools
    • Testing Tools
  • Blog
  • About
  • Contact

Theme Settings

Color Scheme
Display Options
Font Size
100%
Back to Project
RSK World
ruby-todo-list
RSK World
ruby-todo-list
Ruby Todo List - Task Management with User Authentication + Categories + Search + File Attachments + Email Notifications + Rails MVC + Modern Web Interface + API Integration + Educational Design
ruby-todo-list
  • app
  • bin
  • config
  • db
  • lib
  • log
  • public
  • test
  • tmp
  • vendor
  • .env.example1.2 KB
  • .gitignore1.6 KB
  • .ruby-version208 B
  • Dockerfile816 B
  • Gemfile2.7 KB
  • LICENSE1.4 KB
  • Procfile266 B
  • README.md9.2 KB
  • RELEASE_NOTES.md7.5 KB
  • Rakefile429 B
  • config.ru372 B
  • docker-compose.yml1.3 KB
  • index.html39.4 KB
  • package.json890 B
  • ruby-todo-list.png.html971 B
test_system.pypackage.jsonProcfilegenerate_data.pyDockerfiledocker-compose.yml
package.json
Raw Download
Find: Go to:
{
  "name": "ruby-todo-list",
  "private": true,
  "description": "Ruby To-Do List Application - A complete task management application built with Ruby on Rails",
  "author": {
    "name": "Molla Samser",
    "email": "help@rskworld.in",
    "phone": "+91 93305 39277",
    "address": "Nutanhat, Mongolkote, Purba Burdwan, West Bengal, India, 713147"
  },
  "year": "2026",
  "dependencies": {
    "@hotwired/stimulus": "^3.2.2",
    "@hotwired/turbo-rails": "^8.0.4",
    "@popperjs/core": "^2.11.8",
    "bootstrap": "^5.3.3",
    "bootstrap-icons": "^1.11.3",
    "jquery": "^3.7.1"
  },
  "scripts": {
    "build": "esbuild app/javascript/*.* --bundle --sourcemap --outdir=app/assets/builds --public-path=/assets",
    "build:css": "sass ./app/assets/stylesheets/application.scss ./app/assets/builds/application.css --no-source-map --load-path=node_modules"
  }
}
24 lines•890 B
json
Procfile
Raw Download
Find: Go to:
# Ruby To-Do List Application - Procfile
# Created by: Molla Samser (help@rskworld.in, +91 93305 39277)
# Address: Nutanhat, Mongolkote, Purba Burdwan, West Bengal, India, 713147
# Year: 2026

web: bundle exec puma -C config/puma.rb
worker: bundle exec sidekiq
7 lines•266 B
text
Dockerfile
Raw Download
Find: Go to:
# Ruby To-Do List Application - Dockerfile
# Created by: Molla Samser (help@rskworld.in, +91 93305 39277)
# Address: Nutanhat, Mongolkote, Purba Burdwan, West Bengal, India, 713147
# Year: 2026

FROM ruby:3.3.10

# Install dependencies
RUN apt-get update -qq && apt-get install -y \
    build-essential \
    libpq-dev \
    nodejs \
    npm \
    postgresql-client \
    && rm -rf /var/lib/apt/lists/*

# Set working directory
WORKDIR /app

# Install Ruby gems
COPY Gemfile Gemfile.lock ./
RUN bundle install

# Install Node.js packages
COPY package.json package-lock.json ./
RUN npm install

# Copy application code
COPY . .

# Precompile assets
RUN bundle exec rake assets:precompile

# Expose port
EXPOSE 3000

# Start the application
CMD ["rails", "server", "-b", "0.0.0.0"]
38 lines•816 B
text
docker-compose.yml
Raw Download
Find: Go to:
# Ruby To-Do List Application - Docker Compose
# Created by: Molla Samser (help@rskworld.in, +91 93305 39277)
# Address: Nutanhat, Mongolkote, Purba Burdwan, West Bengal, India, 713147
# Year: 2026

version: '3.8'

services:
  db:
    image: postgres:15
    restart: always
    environment:
      POSTGRES_DB: ruby_todo_list_production
      POSTGRES_USER: postgres
      POSTGRES_PASSWORD: password
    volumes:
      - postgres_data:/var/lib/postgresql/data
    ports:
      - "5432:5432"

  redis:
    image: redis:7-alpine
    restart: always
    ports:
      - "6379:6379"

  app:
    build: .
    restart: always
    environment:
      RAILS_ENV: production
      DATABASE_URL: postgres://postgres:password@db:5432/ruby_todo_list_production
      REDIS_URL: redis://redis:6379/1
    depends_on:
      - db
      - redis
    ports:
      - "3000:3000"
    volumes:
      - ./storage:/app/storage
      - ./log:/app/log

  sidekiq:
    build: .
    restart: always
    environment:
      RAILS_ENV: production
      DATABASE_URL: postgres://postgres:password@db:5432/ruby_todo_list_production
      REDIS_URL: redis://redis:6379/1
    depends_on:
      - db
      - redis
    command: bundle exec sidekiq

volumes:
  postgres_data:
56 lines•1.3 KB
yaml
🚀 Support RSK World

Subscribe to our YouTube channel for latest tutorials & updates!



Click subscribe & support our work ❤️

About RSK World

Founded by Molla Samser, with Designer & Tester Rima Khatun, RSK World is your one-stop destination for free programming resources, source code, and development tools.

Founder: Molla Samser
Designer & Tester: Rima Khatun

Development

  • Game Development
  • Web Development
  • Mobile Development
  • AI Development
  • Development Tools

Legal

  • Terms & Conditions
  • Privacy Policy
  • Disclaimer

Contact Info

Nutanhat, Mongolkote
Purba Burdwan, West Bengal
India, 713147

+91 93305 39277

hello@rskworld.in
support@rskworld.in

© 2026 RSK World. All rights reserved.

Content used for educational purposes only. View Disclaimer