Skip to content

Latest commit

 

History

History
34 lines (20 loc) · 1005 Bytes

File metadata and controls

34 lines (20 loc) · 1005 Bytes

Contribute

You'd like to contribute to Quarrel ? I'm open to PRs and I'd love to review them.

Here's everything you need to know to build and run the app on your own machine.

Setup and Run

Clone the repository the way you usually do.

git clone https://github.com/Vexcited/Quarrel
cd Quarrel

You can now run the app in debug target using cargo run.

Usage of AI agents

You'll find an AGENTS.md file in the repository that your AI agent should pickup.

It contains a set of rules to understand the structure and technologies used to build Quarrel.

Please, write code by yourself, do not use AI to write all the code for you. Any vibecoded PR will surely get ignored or closed.

Migrations

If you'd like to make a change in the database, you can create a migration using the sqlx CLI.

sqlx migrate add name_of_the_migration

It'll be applied automatically when Quarrel starts.