diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index dfa54af5..3da5b830 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -47,21 +47,10 @@ $ docker run -it --rm -p 8080:8080 -v `PWD`:/app -w /app sqlite:///db.sqlite3 ``` $ pip install -e . -$ optuna-dashboard sqlite:///db.sqlite3 -``` - -
- -Environment variables for development - -If you set `OPTUNA_DASHBOARD_DEBUG=1`, the server will automatically restart when the source codes are changed. - -``` $ OPTUNA_DASHBOARD_DEBUG=1 optuna-dashboard sqlite:///db.sqlite3 ``` -
- +Note that `OPTUNA_DASHBOARD_DEBUG=1` makes the server will automatically restart when the source codes are changed. ## Running tests, lint checks and formatters @@ -118,10 +107,11 @@ $ tox -e flake8 -e black -e mypy $ npm run fmt ``` -### Auto-formatting Python files (by black) +### Auto-formatting Python files ``` $ black . +$ isort . ```