Chapter 6 Database P

The webserver is working! Woo Hoo.

Worked through the Certificate problem thank you Forums.

Now comes data base problem Maybe
UPDATE:
Ultimately I could never get the docker compose up
to build a a database so I built one and ported the
/app/configure.swift

app.databases.use(.postgres(
hostname: “localhost”,
port: 32000,# this was the port I set up the data base on
username: “vdata_base_username”,#the actual account
password: “vdata_base_password”,# the actual password
database: “webservice_db_1”# this is the name of the database the app wants
), as: .psql)

UPDATE: