Skip to content
This repository has been archived by the owner on Dec 27, 2024. It is now read-only.

Latest commit

 

History

History
38 lines (24 loc) · 791 Bytes

README.md

File metadata and controls

38 lines (24 loc) · 791 Bytes

college assist

Python Python Version

Description

Backend

1. Install Poetry

  1. Install Poetry if you haven't already:

    pip install poetry
  2. Install the project dependencies:

    poetry install --no-root
  3. Run the application:

    poetry run python app.py

2. Set Up Pre-commit Hooks

This project uses pre-commit to enforce coding standards and run checks before committing code. To install pre-commit hooks:

pre-commit install

After this, every time you make a commit, the hooks will run automatically to ensure code quality.