Chirper is an open source Twitter/X clone built with Spring Boot and MariaDB!
Instructions for local development:
- Add your database credentials in as environment variables
On Linux/Mac:
export DB_URL=jdbc:mariadb://restofthedomainhere
export DB_USERNAME=usernamehere
export DB_PASSWORD=passwordhere
On Windows:
setx DB_URL "jdbc:mariadb://restofthedomainhere"
setx DB_USERNAME "usernamehere"
setx DB_PASSWORD "passwordhere"