Skip to content

Latest commit

 

History

History
13 lines (9 loc) · 265 Bytes

README.md

File metadata and controls

13 lines (9 loc) · 265 Bytes

survey

Survey hackathon Project using spring and docker:

Setup

  1. Uses local postgres installation, setup and create required tables
CREATE DATABASE survey;
CREATE USER demo WITH PASSWORD 'demo123';
GRANT ALL PRIVILEGES ON DATABASE survey TO demo;