-
-
Notifications
You must be signed in to change notification settings - Fork 273
Developer Guides
Welcome to the Underthesea developer guides 🌊. These documents provide comprehensive instructions and resources 📚 to help you contribute to the Underthesea project 🐠. Whether you're a new contributor or an experienced developer, you'll find valuable information on how to get started 🚀, best practices for development 💻, and guidelines for submitting your contributions 📬.
Setup pre-commit hooks for running flake8
, black
and pylint
before commit
- Step 1: Edit your
underthesea/.git/hooks/pre-commit
file
echo 'Run Flake8'
flake8 --max-complexity 10 --ignore E501,W504,W605 .
echo 'Run Black'
black underthesea/utils/vietnamese_ipa.py
black underthesea/utils/vietnamese_ipa_rules.py
black --check underthesea/utils/vietnamese_ipa.py
black --check underthesea/utils/vietnamese_ipa_rules.py
echo 'Run pylint'
pylint ./underthesea/utils/vietnamese_ipa.py --fail-under 9
We're in the processing of applying black
and pylint
. A lot of works must be done for fully migrations.
- Step 2: Change permission
$ chmod u+x .git/hooks/pre-commit
Always build before commit
- Step 1: Edit your
resources/.git/hooks/pre-commit
file
echo 'Build resources'
python build.py
- Step 2: Change permission
$ chmod u+x .git/hooks/pre-commit
-
Linting Tool: We use
flake8
to ensure our code adheres to PEP 8 standards and to catch any potential errors. -
Documentation Style: For docstrings, we follow the
Google Style
conventions to maintain clarity and consistency in our code documentation.
Step 1: First, install git-lfs (before submodule init)
Step 2: Initialize submodules
git submodule update --init --recursive
Step 3: Go to datasets
folder to access and mangage datasets
For development and maintaince underthesea, we are using the following tools:
- Git (Github, Github Actions)
- Pycharm 2022.2.1 (Community Edition)
- Mac (Mac OS Monterey 12.4), Ubuntu (18.04, 20.04)
- Anaconda (conda 4.9.2)
- Python (3.8)
- Docker (Playground)
- Rust (poetry 1.1.14, maturin 0.9.4)
Technologies for Apps
- Django 3.2.16
- Bootstrap 3.3, Angular 1.6.5
Thanks for all awesome creators and maintainers.