Remove outdated postgres check and dep from shell.nix

This commit is contained in:
Sashanoraa
2023-12-03 03:13:44 -05:00
committed by Edward Loveall
parent 69b3fb570e
commit 10af5c91c3
2 changed files with 0 additions and 12 deletions

View File

@@ -17,17 +17,6 @@ if command_not_found "yarn"; then
print_error "Yarn is not installed\n See https://yarnpkg.com/lang/en/docs/install/ for install instructions."
fi
if command_not_found "createdb"; then
MSG="Please install the postgres CLI tools, then try again."
if is_mac; then
MSG="$MSG\nIf you're using Postgres.app, see https://postgresapp.com/documentation/cli-tools.html."
fi
MSG="$MSG\nSee https://www.postgresql.org/docs/current/tutorial-install.html for install instructions."
print_error "$MSG"
fi
## CUSTOM PRE-BOOT CHECKS ##
# example:
# if command_not_running "redis-cli ping"; then

View File

@@ -10,7 +10,6 @@ pkgs.mkShell {
overmind
nodejs
openssl.dev
postgresql
shards
yarn
];