AntiqueAuthBackend / README.md
hatamo's picture
Addec correct readme
d619805
metadata
title: AntiqueAuthBackend
emoji: 🏺
colorFrom: blue
colorTo: purple
sdk: docker
pinned: false

Antique Analyzer

A rails project - Rails application for antique analysis. https://guides.rubyonrails.org/install_ruby_on_rails.html

Requirements

  • Ruby 3.4.4
  • Rails 8.1.1
  • SQLite3

Installation

  1. Install dependencies:
bundle install
  1. Create database:
rails db:create
rails db:migrate
  1. Load seed data:
rails db:seed

This will create sample data:

  • 4 users (admin, 2 experts, 1 regular user)
  • 5 categories (including hierarchical structure)
  • 5 auctions with different verification statuses
  • 4 opinions from experts and users
  • Opinion votes
  • AI analysis history

Running the Application

Start the development server:

rails server

The application will be available at: http://localhost:3000

Tests

Run tests:

rails test