- web/: Vue 3 + Vite + UnoCSS + Pinia, dark tactical theme (amber/#0d1117) - AppNav, ListingCard, SearchView with filters/sort, composables (useSnipeMode, useKonamiCode, useMotion), Pinia search store - Steal shimmer, auction countdown, Snipe Mode easter egg all native in Vue - docker/web/: nginx + multi-stage Dockerfile (node build → nginx serve) - compose.yml: api (8510) + web (8509) services - Dockerfile CMD updated to uvicorn for upcoming FastAPI layer - Clean build: 0 TS errors, 380 modules
14 lines
387 B
Ruby
14 lines
387 B
Ruby
require 'rails'
|
|
require 'sprockets/railtie'
|
|
|
|
module Speakingurl
|
|
module Rails
|
|
class Railtie < ::Rails::Railtie
|
|
initializer "speakingurl_rails.append_path", :group => :all do |app|
|
|
speakingurl_path = File.expand_path('../', __FILE__)
|
|
sprockets_env = app.assets || Sprockets
|
|
sprockets_env.prepend_path(speakingurl_path.to_s)
|
|
end
|
|
end
|
|
end
|
|
end
|