My own website https://www.jovian-hersemeule.eu/projets/pandoc_site/content.html

DricomDragon ecaccb78e7 :fire: Remove limit section 1 year ago
src c1058d0802 :fire: Remove limit section 1 year ago
undeployed acb47b2f78 :wrench: Make deploy script working with sftp 1 year ago
.gitignore 0212fd8747 :eyes: Ignore QOwnNotes generated files 1 year ago
.lvimrc 06ba8e9afe Set up project vimrc to keep code consistent 4 years ago
README.md 062d8afada :memo: Update deployment instructions 1 year ago
example.env.local a152ad8c96 :memo: Explain local env variables 1 year ago
makefile 9dbdd039e8 :sparkle: Simplify distributed files list 1 year ago

README.md

Jovian Static generated Website

Jovian portfolio and resume

Test locally

Check the generated code source

make build

Look at the *.gen.* files to check the generated code.

Deploy on local apache

You may need to manually start apache first with service apache2 start.

DIST_DIR=/var/www/html make -e install

Check your work on local apache server.

You can set your custom env vars in a .env.local file and injecting them with the source command. See example.env.local to see the useful vars to implement.

source .env.local
make -e install

Deploy to prod

Branching

Merge your branch into the master branch and deploy from master.

Tag

Retrieve the last version with git describe.

Increment the version number vX.Y.Z :

  • Increment X for breaking change (like new tech) ;
  • Increment Y when new content is added (sections, pages) ;
  • Increment Z when you patched something (misprint, correction, minor updates).

Use a annotated tag with git tag -a vX.Y.Z.

You can deploy on local apache before pushing your code to production.

Put into production

Run undeployed/scripts/deploy-to-ovh.sh