Skip to content

sujeshs/NYU

Repository files navigation

Contribution guidelines

  1. Run mvn spotless:apply to format your code
  2. Submit PRs

Backup

  1. To export data from postgres use below command
docker exec -t stern-local-postgres pg_dumpall -c -U postgres > ./export.sql
  1. To import data into postgres
docker exec -it stern-local-postgres psql -U postgres -P postgres -f export.sql