Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add editable tip and docs typo fix to README #2568

Open
wants to merge 4 commits into
base: master
Choose a base branch
from
Open
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 17 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -98,20 +98,32 @@ should be included, feel free to make the changes and submit a *pull-request*.

To build the docs in your local environment, from the project directory:

tox -e docs-html
```bash
tox -e docs
pamelafox marked this conversation as resolved.
Show resolved Hide resolved
```

## Installation

To install Flask-Admin, simply:

pip install flask-admin
```shell
pip install flask-admin
```

Or alternatively, you can download the repository and install manually
by doing:

git clone https://github.com/pallets-eco/flask-admin.git
cd flask-admin
pip install .
```shell
git clone https://github.com/pallets-eco/flask-admin.git
cd flask-admin
pip install .
```

If you are contributing a bug fix or a new feature, you can install the app in editable mode:

```shell
pip install -e .
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Or should we do ".[all]"?

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think .[all] is a good thought (and it's what I tend to do) 👍

pamelafox marked this conversation as resolved.
Show resolved Hide resolved
```

## Tests

Expand Down