Skip to content

Commit

Permalink
Deployed e2a1b0c with MkDocs version: 1.5.3
Browse files Browse the repository at this point in the history
  • Loading branch information
xultaeculcis committed Jun 16, 2024
1 parent 54746d5 commit cc97bd9
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 8 deletions.
11 changes: 4 additions & 7 deletions guide/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -655,6 +655,7 @@ <h3 id="project-directory-structure">Project directory structure</h3>
│ ├── interim &lt;- Intermediate data that has been transformed.
│ ├── processed &lt;- The final, canonical data sets for modeling.
│ └── raw &lt;- The original, immutable data dump.
├── Dockerfile &lt;- Dockerfile definition.
├── docs &lt;- The mkdocs documentation sources.
│ ├── api_ref &lt;- Source package docs.
│ │ ├── consts.md
Expand All @@ -669,7 +670,8 @@ <h3 id="project-directory-structure">Project directory structure</h3>
│ │ └── tests.md
│ ├── index.md &lt;- Docs homepage.
│ └── __init__.py
├── env.yaml &lt;- Conda environment definition.
├── env-dev.yaml &lt;- Conda environment definition with development dependencies.
├── env.yaml &lt;- Main Conda environment definition with only the necessary packages.
├── LICENSE &lt;- The license file.
├── Makefile &lt;- Makefile with commands like `make docs` or
│ `make pc`.
Expand Down Expand Up @@ -705,18 +707,13 @@ <h3 id="project-directory-structure">Project directory structure</h3>
│ and information, which are used by pip to build
│ the package and project tooling configs.
├── README.md
├── setup.py
└── tests &lt;- The tests directory.
├── conftest.py &lt;- Contains test fixtures and utility functions.
├── e2e &lt;- Contains end-to-end tests.
│ ├── __init__.py
│ └── test_dummy.py
├── __init__.py
├── integration &lt;- Contains integration tests.
│ ├── __init__.py
│ └── test_dummy.py
└── unit &lt;- Contains unit tests.
├── __init__.py
└── test_dummy.py
</code></pre></div>
<p>Most of those folders were described in detail in the
<a href="http://drivendata.github.io/cookiecutter-data-science/">Cookiecutter Data Science Docs</a>.</p>
Expand Down
Loading

0 comments on commit cc97bd9

Please sign in to comment.