diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..1050593 --- /dev/null +++ b/.gitignore @@ -0,0 +1,2 @@ +*.conf +*.temp diff --git a/README.md b/README.md new file mode 100644 index 0000000..e97daa8 --- /dev/null +++ b/README.md @@ -0,0 +1,24 @@ +This is where all sources related to my Gemini capsule and my website. + +You will find both the content I write and the script I use to generate the html from +the gemtext files. + +> Lots of things will change in the script to make it more flexible and sensible. + +I write everything in gemtext first and only then generate the html for the web. + +## Configuration +The script needs a config file to provide the remote servers and some directory +paths. + +``` +WORKDIR=~/dev/gemini-capsule +ASSETS=$WORKDIR/assets + +LGMI=~/dev/gemini-capsule/content/ +RGMI=user@remote.server:/directory + +HTMLPARTS=~/dev/gemini-capsule/html-parts +LHTML=~/dev/gemini-capsule/html-output/ +RHTML=user@remote.server:/directory +```