Crates.io | on-a-roll |
lib.rs | on-a-roll |
version | 0.1.0 |
source | src |
created_at | 2024-02-15 07:57:28.960424 |
updated_at | 2024-02-15 07:57:28.960424 |
description | On a Roll is CLI task manager wriiten in Rust that makes you feel like you are on a roll today! |
homepage | |
repository | https://github.com/donbignose/on-a-roll/ |
max_upload_size | |
id | 1140767 |
size | 62,790 |
On a Roll is a CLI task manager written in Rust that makes you feel like you are on a roll today.
It uses Diesel for database interactions and SQLite as the database engine, ensuring lightweight and efficient data management.
These instructions will get you a copy of the project up and running on your local machine for development and testing purposes.
Rust Programming Language
SQLite
Diesel CLI
First, clone the repository:
git clone https://github.com/donbignose/on-a-roll.git
cd on-a-roll
Install the Diesel CLI, which is necessary for handling database migrations:
cargo install diesel_cli --no-default-features --features sqlite
Set up the database by running Diesel migrations:
diesel setup
Now, you can build and run the project:
cargo build
cargo run
We use Commitizen and follow the Conventional Commits specification for our commit messages. This leads to more readable messages that are easy to follow when looking through the project history. It also allows us to automatically generate a changelog.
We recommend using Commitizen for crafting your commit messages. It's a tool
that helps you write consistent and conventional commit messages. To use
Commitizen, run cz commit
in your terminal instead of git commit
. This
project includes a .cz.toml
configuration file to facilitate Commitizen's
usage.
Our project employs pre-commit hooks to ensure code quality and adherence to standards. Before committing, hooks for code formatting and linting are run, helping to maintain a clean codebase.
To set up pre-commit hooks locally, run the following command:
pre-commit install
This command sets up hooks in your local repository, running checks such as rustfmt and Clippy before each commit.
We welcome contributions from the community! Please read our contributing guidelines and code of conduct before making pull requests.
This project is licensed under the MIT License - see the file for details.