├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── custom.md │ └── feature_request.md └── workflows │ └── integrate.yml ├── .gitignore ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE ├── PKGBUILD ├── README.md ├── assets ├── python_dir.PNG └── python_init.PNG ├── go.mod ├── go.sum ├── hydra ├── HEAD ├── config ├── description ├── hooks │ ├── applypatch-msg.sample │ ├── commit-msg.sample │ ├── fsmonitor-watchman.sample │ ├── post-update.sample │ ├── pre-applypatch.sample │ ├── pre-commit.sample │ ├── pre-merge-commit.sample │ ├── pre-push.sample │ ├── pre-rebase.sample │ ├── pre-receive.sample │ ├── prepare-commit-msg.sample │ ├── push-to-checkout.sample │ └── update.sample ├── info │ └── exclude ├── objects │ └── pack │ │ ├── pack-9130140b25475cf9f2e06660ca95f5d8ee000ef6.idx │ │ └── pack-9130140b25475cf9f2e06660ca95f5d8ee000ef6.pack └── packed-refs ├── linux_install.sh ├── macos_install.sh ├── pkg └── hydra-git │ ├── .BUILDINFO │ ├── .MTREE │ └── .PKGINFO ├── src ├── boilerplates │ ├── cssReset │ ├── flask │ ├── gemspec │ ├── html │ └── setupContent ├── build.sh ├── config.go ├── config_test.go ├── gitignores │ ├── c.gitignore │ ├── cpp.gitignore │ ├── go.gitignore │ ├── python.gitignore │ ├── ruby.gitignore │ └── web.gitignore ├── hydra.go ├── init.go ├── init_test.go ├── licenses │ ├── APACHE │ ├── BSD │ ├── EPL │ ├── GPL │ ├── MIT │ ├── MPL │ └── UNI ├── list.go ├── static.go ├── templates │ ├── go.json │ └── python.json ├── update.go └── utils.go ├── structures.md └── windows_install.ps1 /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shravanasati/hydra/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/custom.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shravanasati/hydra/HEAD/.github/ISSUE_TEMPLATE/custom.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shravanasati/hydra/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/workflows/integrate.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shravanasati/hydra/HEAD/.github/workflows/integrate.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shravanasati/hydra/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shravanasati/hydra/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shravanasati/hydra/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shravanasati/hydra/HEAD/LICENSE -------------------------------------------------------------------------------- /PKGBUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shravanasati/hydra/HEAD/PKGBUILD -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shravanasati/hydra/HEAD/README.md -------------------------------------------------------------------------------- /assets/python_dir.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shravanasati/hydra/HEAD/assets/python_dir.PNG -------------------------------------------------------------------------------- /assets/python_init.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shravanasati/hydra/HEAD/assets/python_init.PNG -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shravanasati/hydra/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shravanasati/hydra/HEAD/go.sum -------------------------------------------------------------------------------- /hydra/HEAD: -------------------------------------------------------------------------------- 1 | ref: refs/heads/main 2 | -------------------------------------------------------------------------------- /hydra/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shravanasati/hydra/HEAD/hydra/config -------------------------------------------------------------------------------- /hydra/description: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shravanasati/hydra/HEAD/hydra/description -------------------------------------------------------------------------------- /hydra/hooks/applypatch-msg.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shravanasati/hydra/HEAD/hydra/hooks/applypatch-msg.sample -------------------------------------------------------------------------------- /hydra/hooks/commit-msg.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shravanasati/hydra/HEAD/hydra/hooks/commit-msg.sample -------------------------------------------------------------------------------- /hydra/hooks/fsmonitor-watchman.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shravanasati/hydra/HEAD/hydra/hooks/fsmonitor-watchman.sample -------------------------------------------------------------------------------- /hydra/hooks/post-update.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shravanasati/hydra/HEAD/hydra/hooks/post-update.sample -------------------------------------------------------------------------------- /hydra/hooks/pre-applypatch.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shravanasati/hydra/HEAD/hydra/hooks/pre-applypatch.sample -------------------------------------------------------------------------------- /hydra/hooks/pre-commit.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shravanasati/hydra/HEAD/hydra/hooks/pre-commit.sample -------------------------------------------------------------------------------- /hydra/hooks/pre-merge-commit.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shravanasati/hydra/HEAD/hydra/hooks/pre-merge-commit.sample -------------------------------------------------------------------------------- /hydra/hooks/pre-push.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shravanasati/hydra/HEAD/hydra/hooks/pre-push.sample -------------------------------------------------------------------------------- /hydra/hooks/pre-rebase.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shravanasati/hydra/HEAD/hydra/hooks/pre-rebase.sample -------------------------------------------------------------------------------- /hydra/hooks/pre-receive.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shravanasati/hydra/HEAD/hydra/hooks/pre-receive.sample -------------------------------------------------------------------------------- /hydra/hooks/prepare-commit-msg.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shravanasati/hydra/HEAD/hydra/hooks/prepare-commit-msg.sample -------------------------------------------------------------------------------- /hydra/hooks/push-to-checkout.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shravanasati/hydra/HEAD/hydra/hooks/push-to-checkout.sample -------------------------------------------------------------------------------- /hydra/hooks/update.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shravanasati/hydra/HEAD/hydra/hooks/update.sample -------------------------------------------------------------------------------- /hydra/info/exclude: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shravanasati/hydra/HEAD/hydra/info/exclude -------------------------------------------------------------------------------- /hydra/objects/pack/pack-9130140b25475cf9f2e06660ca95f5d8ee000ef6.idx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shravanasati/hydra/HEAD/hydra/objects/pack/pack-9130140b25475cf9f2e06660ca95f5d8ee000ef6.idx -------------------------------------------------------------------------------- /hydra/objects/pack/pack-9130140b25475cf9f2e06660ca95f5d8ee000ef6.pack: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shravanasati/hydra/HEAD/hydra/objects/pack/pack-9130140b25475cf9f2e06660ca95f5d8ee000ef6.pack -------------------------------------------------------------------------------- /hydra/packed-refs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shravanasati/hydra/HEAD/hydra/packed-refs -------------------------------------------------------------------------------- /linux_install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shravanasati/hydra/HEAD/linux_install.sh -------------------------------------------------------------------------------- /macos_install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shravanasati/hydra/HEAD/macos_install.sh -------------------------------------------------------------------------------- /pkg/hydra-git/.BUILDINFO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shravanasati/hydra/HEAD/pkg/hydra-git/.BUILDINFO -------------------------------------------------------------------------------- /pkg/hydra-git/.MTREE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shravanasati/hydra/HEAD/pkg/hydra-git/.MTREE -------------------------------------------------------------------------------- /pkg/hydra-git/.PKGINFO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shravanasati/hydra/HEAD/pkg/hydra-git/.PKGINFO -------------------------------------------------------------------------------- /src/boilerplates/cssReset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shravanasati/hydra/HEAD/src/boilerplates/cssReset -------------------------------------------------------------------------------- /src/boilerplates/flask: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shravanasati/hydra/HEAD/src/boilerplates/flask -------------------------------------------------------------------------------- /src/boilerplates/gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shravanasati/hydra/HEAD/src/boilerplates/gemspec -------------------------------------------------------------------------------- /src/boilerplates/html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shravanasati/hydra/HEAD/src/boilerplates/html -------------------------------------------------------------------------------- /src/boilerplates/setupContent: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shravanasati/hydra/HEAD/src/boilerplates/setupContent -------------------------------------------------------------------------------- /src/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shravanasati/hydra/HEAD/src/build.sh -------------------------------------------------------------------------------- /src/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shravanasati/hydra/HEAD/src/config.go -------------------------------------------------------------------------------- /src/config_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shravanasati/hydra/HEAD/src/config_test.go -------------------------------------------------------------------------------- /src/gitignores/c.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shravanasati/hydra/HEAD/src/gitignores/c.gitignore -------------------------------------------------------------------------------- /src/gitignores/cpp.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shravanasati/hydra/HEAD/src/gitignores/cpp.gitignore -------------------------------------------------------------------------------- /src/gitignores/go.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shravanasati/hydra/HEAD/src/gitignores/go.gitignore -------------------------------------------------------------------------------- /src/gitignores/python.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shravanasati/hydra/HEAD/src/gitignores/python.gitignore -------------------------------------------------------------------------------- /src/gitignores/ruby.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shravanasati/hydra/HEAD/src/gitignores/ruby.gitignore -------------------------------------------------------------------------------- /src/gitignores/web.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shravanasati/hydra/HEAD/src/gitignores/web.gitignore -------------------------------------------------------------------------------- /src/hydra.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shravanasati/hydra/HEAD/src/hydra.go -------------------------------------------------------------------------------- /src/init.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shravanasati/hydra/HEAD/src/init.go -------------------------------------------------------------------------------- /src/init_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shravanasati/hydra/HEAD/src/init_test.go -------------------------------------------------------------------------------- /src/licenses/APACHE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shravanasati/hydra/HEAD/src/licenses/APACHE -------------------------------------------------------------------------------- /src/licenses/BSD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shravanasati/hydra/HEAD/src/licenses/BSD -------------------------------------------------------------------------------- /src/licenses/EPL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shravanasati/hydra/HEAD/src/licenses/EPL -------------------------------------------------------------------------------- /src/licenses/GPL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shravanasati/hydra/HEAD/src/licenses/GPL -------------------------------------------------------------------------------- /src/licenses/MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shravanasati/hydra/HEAD/src/licenses/MIT -------------------------------------------------------------------------------- /src/licenses/MPL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shravanasati/hydra/HEAD/src/licenses/MPL -------------------------------------------------------------------------------- /src/licenses/UNI: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shravanasati/hydra/HEAD/src/licenses/UNI -------------------------------------------------------------------------------- /src/list.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shravanasati/hydra/HEAD/src/list.go -------------------------------------------------------------------------------- /src/static.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shravanasati/hydra/HEAD/src/static.go -------------------------------------------------------------------------------- /src/templates/go.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shravanasati/hydra/HEAD/src/templates/go.json -------------------------------------------------------------------------------- /src/templates/python.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shravanasati/hydra/HEAD/src/templates/python.json -------------------------------------------------------------------------------- /src/update.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shravanasati/hydra/HEAD/src/update.go -------------------------------------------------------------------------------- /src/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shravanasati/hydra/HEAD/src/utils.go -------------------------------------------------------------------------------- /structures.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shravanasati/hydra/HEAD/structures.md -------------------------------------------------------------------------------- /windows_install.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shravanasati/hydra/HEAD/windows_install.ps1 --------------------------------------------------------------------------------