docs: update README
This commit is contained in:
parent
0286af342a
commit
d1f05ddf57
19
README.md
19
README.md
|
@ -4,7 +4,11 @@
|
|||
|
||||
[](https://github.com/ietf-tools/datatracker/releases)
|
||||
[](https://github.com/ietf-tools/datatracker/blob/main/LICENSE)
|
||||
[](https://github.com/ietf-tools/datatracker/pkgs/container/datatracker-db)
|
||||
[](https://github.com/ietf-tools/datatracker/pkgs/container/datatracker-db)
|
||||
[](#prerequisites)
|
||||
[](#prerequisites)
|
||||
[](#prerequisites)
|
||||
[](#prerequisites)
|
||||
|
||||
##### The day-to-day front-end to the IETF database for people who work on IETF standards.
|
||||
|
||||
|
@ -41,6 +45,19 @@ You can submit bug reports, enhancement and new feature requests in the [discuss
|
|||
|
||||
> See the [Docker Dev Environment](#docker-dev-environment) section below for a preconfigured docker environment.
|
||||
|
||||
#### Git Cloning Tips
|
||||
|
||||
Because of the extensive history of this project, cloning the datatracker project locally can take a long time / disk space. You can speed up the cloning process by limiting the history depth:
|
||||
|
||||
- To fetch only up to the 10 latest commits:
|
||||
```sh
|
||||
git clone --depth=10
|
||||
```
|
||||
- To fetch only up to a specific date:
|
||||
```sh
|
||||
git clone --shallow-since=DATE
|
||||
```
|
||||
|
||||
#### Code Tree Overview
|
||||
|
||||
The `ietf/templates/` directory contains Django templates used to generate web pages for the datatracker, mailing list, wgcharter and other things.
|
||||
|
|
Loading…
Reference in a new issue