Clash With JPA
Clone this repository
git clone https://github.com/clashwithjpa/clashwithjpa.com clashwithjpa
cd clashwithjpa
Install dependencies
pnpm i
Start the app
pnpm dev
Follow steps 1 & 2 from the installation guide. Ignore if already done.
Build the app
pnpm build
Preview the app
pnpm preview
To make any changes to the database, you have to follow certain steps to avoid issues
pnpm run db:push
to apply the changes to the databaseThis will ensure that the changes are applied to the database without any issues.
You can also try pnpm run db:studio
to open a web interface to interact with the database.
Things to keep in mind
Code Formatting
pnpm format
before committing your changes or use Prettier
extension in your code editor.pnpm lint
to check for linting errors.