implement basic management console binary
Created by: ggilmore
- Move
cmd/frontend/dbconn
to a newpkg/dbconn
since both thefrontend
andmanagement-console
binaries need to access postgres anyway - Create management console binary with two routes:
-
/get
-> returns the latest core configuration file that was saved to postgres -
/update
-> updates the latest version of core that's saved in postgres
-
- Write plumbing to add the management console binary to
Procfile
, ci pipeline, etc.