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

Added Testing Locally sections #137

Merged
merged 2 commits into from
Mar 6, 2024
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
14 changes: 14 additions & 0 deletions doc/apps/panel.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,20 @@ pandas
matplotlib
```

## Testing locally

To test your Panel app, create a virtual environment and install the packages:

```bash
pip install -r requirements.txt
```

Then run the following command to start the application:

```bash
panel serve app.py
```

## Deploy

To deploy a Panel app from the deployment menu, follow these instructions:
Expand Down
13 changes: 13 additions & 0 deletions doc/apps/solara.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,19 @@ pandas
matplotlib
```

## Testing locally

To test your Solara app, create a virtual environment and install the packages:

```bash
pip install -r requirements.txt
```

Then run the following command to start the application:

```bash
solara run app.py
```

## Deploy

Expand Down
14 changes: 14 additions & 0 deletions doc/apps/streamlit.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,20 @@ pandas
numpy
```

## Testing locally

To test your Streamlit app, create a virtual environment and install the packages:

```bash
pip install -r requirements.txt
```

Then run the following command to start the application:

```bash
streamlit run app.py
```

## Deploy

To deploy a Streamlit app from the deployment menu, follow these instructions:
Expand Down