Spaces:
Runtime error
Runtime error
Add application files
Browse files
README.md
CHANGED
|
@@ -172,17 +172,6 @@ git add -A; git commit -m "Add application files"; git push
|
|
| 172 |
After a couple of minutes, you will see your app published!
|
| 173 |
|
| 174 |
|
| 175 |
-
```
|
| 176 |
-
# this is only for hamel, you can ignore this.
|
| 177 |
-
!jupyter nbconvert --to markdown app.ipynb
|
| 178 |
-
!cat yaml.md app.md > README.md
|
| 179 |
-
```
|
| 180 |
-
|
| 181 |
-
[NbConvertApp] Converting notebook app.ipynb to markdown
|
| 182 |
-
[NbConvertApp] Writing 6113 bytes to app.md
|
| 183 |
-
|
| 184 |
-
|
| 185 |
-
|
| 186 |
```
|
| 187 |
|
| 188 |
```
|
|
|
|
| 172 |
After a couple of minutes, you will see your app published!
|
| 173 |
|
| 174 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 175 |
```
|
| 176 |
|
| 177 |
```
|
app.ipynb
CHANGED
|
@@ -345,27 +345,6 @@
|
|
| 345 |
"After a couple of minutes, you will see your app published! "
|
| 346 |
]
|
| 347 |
},
|
| 348 |
-
{
|
| 349 |
-
"cell_type": "code",
|
| 350 |
-
"execution_count": null,
|
| 351 |
-
"id": "9a4f7c06-406a-4a7d-be6b-6cb606c35d8d",
|
| 352 |
-
"metadata": {},
|
| 353 |
-
"outputs": [
|
| 354 |
-
{
|
| 355 |
-
"name": "stdout",
|
| 356 |
-
"output_type": "stream",
|
| 357 |
-
"text": [
|
| 358 |
-
"[NbConvertApp] Converting notebook app.ipynb to markdown\n",
|
| 359 |
-
"[NbConvertApp] Writing 6113 bytes to app.md\n"
|
| 360 |
-
]
|
| 361 |
-
}
|
| 362 |
-
],
|
| 363 |
-
"source": [
|
| 364 |
-
"# this is only for hamel, you can ignore this.\n",
|
| 365 |
-
"!jupyter nbconvert --to markdown app.ipynb \n",
|
| 366 |
-
"!cat yaml.md app.md > README.md "
|
| 367 |
-
]
|
| 368 |
-
},
|
| 369 |
{
|
| 370 |
"cell_type": "code",
|
| 371 |
"execution_count": null,
|
|
|
|
| 345 |
"After a couple of minutes, you will see your app published! "
|
| 346 |
]
|
| 347 |
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 348 |
{
|
| 349 |
"cell_type": "code",
|
| 350 |
"execution_count": null,
|
app.md
CHANGED
|
@@ -160,17 +160,6 @@ git add -A; git commit -m "Add application files"; git push
|
|
| 160 |
After a couple of minutes, you will see your app published!
|
| 161 |
|
| 162 |
|
| 163 |
-
```
|
| 164 |
-
# this is only for hamel, you can ignore this.
|
| 165 |
-
!jupyter nbconvert --to markdown app.ipynb
|
| 166 |
-
!cat yaml.md app.md > README.md
|
| 167 |
-
```
|
| 168 |
-
|
| 169 |
-
[NbConvertApp] Converting notebook app.ipynb to markdown
|
| 170 |
-
[NbConvertApp] Writing 6113 bytes to app.md
|
| 171 |
-
|
| 172 |
-
|
| 173 |
-
|
| 174 |
```
|
| 175 |
|
| 176 |
```
|
|
|
|
| 160 |
After a couple of minutes, you will see your app published!
|
| 161 |
|
| 162 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 163 |
```
|
| 164 |
|
| 165 |
```
|
update.sh
ADDED
|
@@ -0,0 +1,6 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
#!/bin/bash
|
| 2 |
+
|
| 3 |
+
# this is only for hamel, you can ignore this.
|
| 4 |
+
jupyter nbconvert --to markdown app.ipynb
|
| 5 |
+
cat yaml.md app.md > README.md
|
| 6 |
+
git add -A; git commit -m "Add application files"; git push
|