Skip to content

Commit

Permalink
Merge pull request #117 from matorral-project/towards-v1-mvp
Browse files Browse the repository at this point in the history
Towards v1 MVP - #1
  • Loading branch information
matagus authored Feb 28, 2024
2 parents c1ed44e + 3c8ad49 commit 20a5d3f
Show file tree
Hide file tree
Showing 87 changed files with 1,534 additions and 1,214 deletions.
60 changes: 60 additions & 0 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,60 @@
default_stages: [commit]
default_language_version:
python: python3.12

repos:
- repo: https://github.com/charliermarsh/ruff-pre-commit
rev: "v0.2.1"
hooks:
- id: ruff
args: [--fix]

- repo: https://github.com/psf/black
rev: 24.1.1
hooks:
- id: black
args:
- "--target-version=py39"
- "--target-version=py310"
- "--target-version=py311"
- "--target-version=py312"
types: [python]

- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.5.0
hooks:
- id: check-added-large-files
- id: check-ast
- id: check-builtin-literals
- id: check-case-conflict
- id: check-docstring-first
- id: check-shebang-scripts-are-executable
- id: check-merge-conflict
- id: check-json
- id: check-toml
- id: check-xml
- id: check-yaml
- id: debug-statements
- id: destroyed-symlinks
- id: detect-private-key
- id: end-of-file-fixer
exclude: ^LICENSE|\.(html|csv|txt|svg|py)$
- id: pretty-format-json
args: ["--autofix", "--no-ensure-ascii", "--no-sort-keys"]
- id: requirements-txt-fixer
- id: trailing-whitespace
args: [--markdown-linebreak-ext=md]
exclude: \.(html|svg)$

- repo: https://github.com/codespell-project/codespell
rev: v2.2.6
hooks:
- id: codespell
args:
- "--write-changes"

- repo: https://github.com/asottile/pyupgrade
rev: v3.15.0
hooks:
- id: pyupgrade
args: [--py312]
8 changes: 5 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,20 +29,22 @@ Here are some screenshots:

## Roadmap

- Django 5.0 support
- Migrate from Turbolinks to HTMX <3
- Enhance test coverage
- Run using docker compose
- Upgrade to Bulma 1.0 + Dark mode
- Upgrade to Bulma 1.0
- Dark mode
- Support for multiple themes
- Realtime updates
- Milestones
- Subtasks
- Projects
- Multiple assigness
- Kanban view
- History
- Comments everywhere
- Attachments for Stories, Epics and Milestones
- Import data from Jira, Github, Asana, etc
- and more!


## Quick Start
Expand Down
1 change: 0 additions & 1 deletion config/settings/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +0,0 @@
# -*- coding: utf-8 -*-
Loading

0 comments on commit 20a5d3f

Please sign in to comment.