hardcoded path is now hook struct property...

master
Marcell Mars 3 years ago
parent c61d9ec19b
commit 24ad682cb4

@ -14,7 +14,7 @@ The `sphook` executable in root directory of this repo is built on Linux 64bits
The `sphook` binary is only tested on Linux virtual server and developer's laptop. If you need it for some other arch or operating system, build it, test it and report back or even better do PR here.
## Hugo's final output directory
## Hugo's final output directory
`sphook' has hardcoded filepath for Hugo's final output directory:
@ -23,20 +23,23 @@ The `sphook` binary is only tested on Linux virtual server and developer's lapto
```
If you want to build it against another directory where Hugo will render its content you should manually find the line:
```
outDir := filepath.Join("/", "var", "www", "html", "sandpoints")
hook.PublicHTMLPath = filepath.Join("/var", "www", "html", "sandpoints")
```
change it there and rebuild it.
## Two scenarios: post-commit (local) & post-receive (gitea)
`sphook` should work as it is for two scenarios:
`sphook` should work as it is for two scenarios:
- _bare_ git repository and in our case we run it against the `gitea` instances (git web frontend).
- Gitea keeps its `post-receive` hooks inside the `hooks/post-receive.d/` directory relative to particular _bare_ git repository. `sphook` should land there as it is, no need to change the name, and it will run after every remote `git push` into the repo.
- _working_ git repository
- that's usually a contributor running the local instance of a git repository. In order for `sphinx` to work as `post-commit` hook it should be placed inside `.git/hooks/` directory, renamed to `post-commit` and made executable (`chmod +x post-commit`). Hugo, via that hook, will render its output into:
`/var/www/html/sandpoints/{hugo_project_name}-{`\`crc32.ChecksumIEEE(git_repo_path)\`}`.
`/var/www/html/sandpoints/{hugo_project_name}-{`\`crc32.ChecksumIEEE(git_repo_path)\`}`.
## Install `sphook` in Gitea via its web ui
`install_sphook.sh` bash script can be used to install `sphook` to Gitea via its web user interface. If `install_sphook.sh` is made into `post-received` Gitea's hook it will first check if `sphook` is already in `hooks/post-received.d/` directory and if it is not it would install it there. If `sphook` is already there it would delete itself because it is not needed anymore.
`install_sphook.sh` bash script can be used to install `sphook` to Gitea via its web user interface. If `install_sphook.sh` is made into `post-received` Gitea's hook it will first check if `sphook` is already in `hooks/post-received.d/` directory and if it is not it would install it there. If `sphook` is already there it would delete itself because it is not needed anymore.

Loading…
Cancel
Save