Skip to content

Instantly share code, notes, and snippets.

@gryzinsky
gryzinsky / husky.sh
Last active January 13, 2024 12:42
Install Husky with Commitizen and Commitlint Using Yarn
#!/usr/bin/env sh
##############################################
################ Instructions ################
##############################################
# Create a script called husky.sh in
# your project root directory and run:
#
# $ chmod u+x husky.sh
#
@zhunik
zhunik / docker-compose.yml
Created September 14, 2018 15:12
docker-compose Postgres health-check
version: "3"
services:
postgress:
....
healthcheck:
test: ["CMD-SHELL", "pg_isready -U postgres"]
interval: 10s
timeout: 5s
retries: 5
app: