certstrap
Tools to bootstrap CAs, certificate requests, and signed certificates.
File Explorer
Download Latest Version (.zip)- go.yml
- release.yaml
- dependabot.yml
- curve.go
- expiry.go
- expiry_test.go
- init.go
- request_cert.go
- revoke.go
- revoke_test.go
- sign.go
- util.go
- depot.go
- depot_test.go
- perms.go
- perms_windows.go
- pkix.go
- test_tags.go
- test_tags_windows.go
- cert.go
- cert_auth.go
- cert_auth_test.go
- cert_host.go
- cert_host_test.go
- cert_info.go
- cert_info_test.go
- cert_test.go
- crl.go
- crl_test.go
- csr.go
- csr_test.go
- key.go
- key_test.go
- basic_test.go
- ip_test.go
- not_ca_test.go
- uri_test.go
- workflow_test.go
- .gitignore
- certstrap.go
- CODEOWNERS
- CONTRIBUTING.md
- Dockerfile
- go.mod
- go.sum
- LICENSE
- NOTICE
- README.md
# Installation Guide
1. Get the code
git clone https://github.com/square/certstrap
Downloads the entire project code from GitHub to your computer.
cd certstrap
Moves into the project folder you just downloaded.
2. Docker
Easy RecommendedPrerequisites
- Git Needed to download the project code from GitHub.
- Docker Desktop Needed to build and run containers. Install it and keep it running in the background.
docker build -t certstrap .
Builds a runnable image based on the Dockerfile.
docker run -p 8080:80 certstrap
Runs the built image as an actual container.
Run docker compose ps to check the containers are Up. If the README mentions a port, open http://localhost:PORT in your browser.
3. Go
MediumPrerequisites
$ go build
Compiles the Go program into an executable.
If the build finishes without errors, it worked. If you used go run ., check the terminal output.
Pulled directly from this repo's README.
// repository documentation
Was this content helpful?
(0 ratings)
