The build was skipped for component "strapiapp" DigitalOceanApp

Oh and this my database.js

const parse = require(“pg-connection-string”).parse;
const config = parse(process.env.DATABASE_URL);

const { host, port, database, user, password } = parse(
process.env.DATABASE_URL
);

module.exports = ({ env }) => ({
connection: {
client: ‘postgres’,
connection: {
host,
port,
database,
user,
password,
ssl: {
rejectUnauthorized: false,
},
},
debug: false,
},

});

and server.js

module.exports = ({ env }) => ({
proxy: true,
url: env(‘APP_URL’), // Sets the public URL of the application.
app: {
keys: env.array(‘APP_KEYS’)
},

});