Ryn Cao commited on
Commit ·
5f3c2b3
1
Parent(s): 2d1ba32
try from local git repo
Browse files- public-apps/hello.livemd +23 -0
- public-apps/welcome.livemd +4 -0
public-apps/hello.livemd
ADDED
|
@@ -0,0 +1,23 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
<!-- livebook:{"app_settings":{"access_type":"public","output_type":"rich","slug":"welcome"}} -->
|
| 2 |
+
|
| 3 |
+
# Hello HF
|
| 4 |
+
|
| 5 |
+
```elixir
|
| 6 |
+
Mix.install([
|
| 7 |
+
{:kino, "~> 0.13"}
|
| 8 |
+
])
|
| 9 |
+
```
|
| 10 |
+
|
| 11 |
+
## Hello
|
| 12 |
+
|
| 13 |
+
Note: this plain markdown cell not visible in final app
|
| 14 |
+
|
| 15 |
+
```elixir
|
| 16 |
+
Kino.Markdown.new("""
|
| 17 |
+
Hello Hugging Face.
|
| 18 |
+
|
| 19 |
+
## Getting started
|
| 20 |
+
|
| 21 |
+
Edit in local machine, place in public_apps and git push to HF repo space
|
| 22 |
+
""")
|
| 23 |
+
```
|
public-apps/welcome.livemd
CHANGED
|
@@ -44,3 +44,7 @@ for the notebook, mark it as public and then drop its `.livemd` file into
|
|
| 44 |
the "public-apps" directory of your Spaces repo.
|
| 45 |
""")
|
| 46 |
```
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 44 |
the "public-apps" directory of your Spaces repo.
|
| 45 |
""")
|
| 46 |
```
|
| 47 |
+
|
| 48 |
+
## Changelogs
|
| 49 |
+
|
| 50 |
+
- change at local to try something new
|