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

Documentation #39

Merged
merged 6 commits into from
Jul 25, 2022
Merged
Show file tree
Hide file tree
Changes from all 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
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,6 @@ dist/

.deploifai/

site/

.DS_STORE
2 changes: 1 addition & 1 deletion deploifai/mlflow/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
@click.group()
def mlflow():
"""
Initialise, manage, and deploy an ML project
Set-up and manage the ML FLow Integration
"""


Expand Down
4 changes: 4 additions & 0 deletions docs/application.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@

::: mkdocs-click
:module: deploifai.application
:command: application
4 changes: 4 additions & 0 deletions docs/auth.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@

::: mkdocs-click
:module: deploifai.auth
:command: auth
4 changes: 4 additions & 0 deletions docs/cloud-profile.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@

::: mkdocs-click
:module: deploifai.cloud_profile
:command: cloud_profile
4 changes: 4 additions & 0 deletions docs/dataset.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@

::: mkdocs-click
:module: deploifai.dataset
:command: dataset
7 changes: 7 additions & 0 deletions docs/index.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# CLI Reference

This page provides documentation for our command line tools.

::: mkdocs-click
:module: deploifai.cli
:command: cli
4 changes: 4 additions & 0 deletions docs/mlflow.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@

::: mkdocs-click
:module: deploifai.mlflow
:command: mlflow
4 changes: 4 additions & 0 deletions docs/project.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@

::: mkdocs-click
:module: deploifai.project
:command: project
4 changes: 4 additions & 0 deletions docs/server.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@

::: mkdocs-click
:module: deploifai.server
:command: server
4 changes: 4 additions & 0 deletions docs/workspace.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@

::: mkdocs-click
:module: deploifai.workspace
:command: workspace
5 changes: 5 additions & 0 deletions mkdocs.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
site_name: Deploifai CLI
theme: readthedocs

markdown_extensions:
- mkdocs-click
8 changes: 8 additions & 0 deletions readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,3 +53,11 @@ Or, install `deploifai` cli tool in virtual environment for testing:
```shell
pip install --editable .
```

Read the documentation of the `deploifai` cli tool in html:\
This documentation only functions on `Python>=3.7`.\
Installation of `mkdocs==1.3.1` and `mkdocs-click==0.8.0` required

```shell
mkdocs serve
```