django-colorfield

(โ˜… 661)

:art: color field for django models with a nice color-picker in the admin.

  • .gitattributes
  • .gitignore
  • .pre-commit-config.yaml
  • CHANGELOG.md
  • CODE_OF_CONDUCT.md
  • LICENSE.txt
  • MANIFEST.in
  • pyproject.toml
  • README.md
  • requirements-test.txt
  • requirements.txt
  • runtests.py
  • SECURITY.md
  • setup.py
  • tox.ini

# Installation Guide

1. Get the code
git clone https://github.com/fabiocaccamo/django-colorfield

Downloads the entire project code from GitHub to your computer.

cd django-colorfield

Moves into the project folder you just downloaded.

2. Python

Easy Recommended
Prerequisites
  • Git Needed to download the project code from GitHub.
  • Python 3 On Windows, be sure to check 'Add Python to PATH' during installation.
python -m venv venv && . venv/bin/activate

Runs the Python script (or module).

python -m pip install --upgrade pip

Installs the Python libraries listed in requirements.txt (or similar).

pip install -r requirements.txt -r requirements-test.txt

Installs the Python libraries listed in requirements.txt (or similar).

python -m django test --settings "tests.settings"

Runs the Python script (or module).

โœ… If it runs without errors and prints output in the terminal, it worked.

Pulled directly from this repo's README.

// repository documentation