This gist is part of the tutorial about modelizing a Star Wars Ontolofy into SurrealDB
This repository contains the Dockerfile and the necessary files to provision a Debian VM with Terraform into Openstack, install Teleport and Caddy, and configure the latter to act as a reverse proxy for the former.
- Cloudflare account
- Openstack cluster
- Terraform CLI
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
cat <<EEE > .husky/commit-msg | |
#!/bin/sh | |
. "\$(dirname "\$0")/_/husky.sh" | |
npx --no -- commitlint --edit "\${1}" | |
EEE | |
chmod a+x .husky/commit-msg |