Webpigram is a web application that allows users to generate, view, and submit epigrams (short, witty sayings).
- just - Command runner for project-specific tasks
Install using Homebrew:brew install just
For other installation methods or more details, see the official repository - Java 23+ for backend
- Node.js and pnpm for frontend
- Docker and Docker Compose (for PostgreSQL database)
Visit the live demo at https://webpigram.vercel.app (Note: The site uses a free instance that requires cold start on first boot)
# Clone the repository with submodules
git clone --recurse-submodules https://github.com/empeje/webpigram.git
cd webpigram
# Set up the project (installs dependencies)
just setup
# Start PostgreSQL database
docker-compose up -d
# Run both backend and frontend in development mode
just dev
The application will be available at:
- Frontend: http://localhost:3000
- Backend API: http://localhost:8080
- Backend: Spring Boot application in the
backend/
directory - Frontend: Next.js application in the
frontend/
directory - Fortune-OSX: Submodule containing fortune data used to populate the database
- Backend Documentation - Details on backend architecture, features, and configuration
- Frontend Documentation - Information on frontend setup, environment variables, and deployment
- Backend Tools Documentation - Code quality tools used in the backend
- Fortune Loader Documentation - Tool for loading fortune data into the database
# Run backend only
just dev-backend
# Run frontend only
just dev-frontend
# Run backend with fortune loader enabled
just dev-backend-with-fortune
# Build the entire application
just build
# Run tests
just test
- Generate random epigrams from a database of fortunes
- AI-generated epigrams
- User submission of epigrams with CAPTCHA protection
- Epigram feeds combining popular and recent content
- Moderation system (manual or AI-based)
- Reporting functionality for inappropriate content
The application can be deployed using Docker. A Dockerfile is provided in the root directory.
See the backend and frontend README files for details on required environment variables.