diff options
author | Erg <uinarf@autistici.org> | 2024-11-28 16:40:51 +0100 |
---|---|---|
committer | Erg <uinarf@autistici.org> | 2024-11-28 16:40:51 +0100 |
commit | bf8efbce7f202f1f7650f628955fb0e42d343a1f (patch) | |
tree | d80a2556b24efdd4a9e0d8e6f5f6a11bcb3b5afd /README.md | |
download | fastapi_blog-bf8efbce7f202f1f7650f628955fb0e42d343a1f.tar.gz fastapi_blog-bf8efbce7f202f1f7650f628955fb0e42d343a1f.tar.bz2 fastapi_blog-bf8efbce7f202f1f7650f628955fb0e42d343a1f.zip |
Initial commit. Serving main page and static html files, extra 404 error, contains openrc service file and accompanying scriptHEADmaster
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/README.md b/README.md new file mode 100644 index 0000000..5eb34a8 --- /dev/null +++ b/README.md @@ -0,0 +1,15 @@ +# To run jupyter notebook run: + +$ jupyter-notebook + +# To generate html file from the notebook without executing cell content run: + +$ jupyter nbconvert --to html <your file> + +# To generate html file from the notebook executing cell content (they have to be runnable) run: + +$ jupyter nbconvert --execute --to html <your file> + +# Going to convert to MarkDown for storing in the database and write a template for it. + +# Will dockerize app so that I can test CI-CD with Jenkins. |