Pinterest-like app for saving images, videos, quotes, and embeds. Features: - Go backend with PostgreSQL, SSR templates - Console-based admin auth (login/logout via browser console) - Item types: images, videos (ffmpeg transcoding), quotes, embeds - Media stored as BLOBs in PostgreSQL - OpenGraph metadata extraction for links - Embed detection for YouTube, Vimeo, Twitter/X - Masonry grid layout, item detail pages - Tag system with filtering - Refresh metadata endpoint with change warnings - Replace media endpoint for updating item images/videos
23 lines
654 B
Modula-2
23 lines
654 B
Modula-2
module lookbook
|
|
|
|
go 1.23.0
|
|
|
|
require (
|
|
git.soup.land/soup/sxgo v0.1.1
|
|
github.com/jackc/pgx/v5 v5.7.6
|
|
github.com/pressly/goose/v3 v3.26.0
|
|
golang.org/x/crypto v0.40.0
|
|
golang.org/x/net v0.42.0
|
|
)
|
|
|
|
require (
|
|
github.com/cespare/xxhash/v2 v2.3.0 // indirect
|
|
github.com/jackc/pgpassfile v1.0.0 // indirect
|
|
github.com/jackc/pgservicefile v0.0.0-20240606120523-5a60cdf6a761 // indirect
|
|
github.com/jackc/puddle/v2 v2.2.2 // indirect
|
|
github.com/mfridman/interpolate v0.0.2 // indirect
|
|
github.com/sethvargo/go-retry v0.3.0 // indirect
|
|
go.uber.org/multierr v1.11.0 // indirect
|
|
golang.org/x/sync v0.16.0 // indirect
|
|
golang.org/x/text v0.27.0 // indirect
|
|
)
|