Skip to content
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
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -176,9 +176,9 @@ https://github.com/user-attachments/assets/ff83dab9-0c9f-4453-8dcb-fb9526726344

Self-hosting is ideal for hackers, students, and DIY developers while fully managed hosting is ideal for enterprise developers needing easy autoscaling, security, release management, and 99.995% uptime and observability.

To host on [Lightning AI](https://lightning.ai/deploy), simply add the `--cloud` arg, login and choose the cloud of your choice.
To host on [Lightning AI](https://lightning.ai/deploy), simply run the command, login and choose the cloud of your choice.
```bash
lightning serve api server.py --cloud
lightning serve server.py
```

 
Expand Down
2 changes: 1 addition & 1 deletion tests/minimal_run.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@

def main():
process = subprocess.Popen(
["lightning", "serve", "api", "tests/simple_server.py"],
["lightning", "serve", "api", "tests/simple_server.py", "--local"],
)
print("Waiting for server to start...")
time.sleep(10)
Expand Down
Loading