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
Original file line number Diff line number Diff line change
Expand Up @@ -87,10 +87,10 @@ You'll see a print-out like this:
/Users/Your/Current/dir/your-app-name

run your app with:
lightning run app your-app-name/your_app_name/app.py
lightning run app your-app-name/app.py

run it on the cloud to share with your collaborators:
lightning run app your-app-name/your_app_name/app.py --cloud
lightning run app your-app-name/app.py --cloud

----

Expand Down
3 changes: 3 additions & 0 deletions src/lightning_app/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,9 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/).
- Resolved a bug where the install command was not installing the latest version of an app/component by default ([#14181](https://github.com/Lightning-AI/lightning/pull/14181))


- Unification of app template: moved `app.py` to root dir for `lightning init app <app_name>` template ([#13853](https://github.com/Lightning-AI/lightning/pull/13853))


## [0.5.5] - 2022-08-9

### Deprecated
Expand Down
4 changes: 2 additions & 2 deletions src/lightning_app/cli/cmd_init.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,10 @@ def app(app_name):
{new_resource_name}

run your app with:
lightning run app {app_name}/{name_for_files}/app.py
lightning run app {app_name}/app.py

run it on the cloud to share with your collaborators:
lightning run app {app_name}/{name_for_files}/app.py --cloud
lightning run app {app_name}/app.py --cloud
"""
logger.info(m)

Expand Down