as-services/scripts/apply-hasura-convention
devthejo 16b7e7d6aa
All checks were successful
/ build (map[dockerfile:./services/hasura/Dockerfile name:hasura]) (push) Successful in 47s
/ build (map[dockerfile:./services/web/Dockerfile name:web]) (push) Successful in 1m47s
/ build (map[dockerfile:./services/watchers/Dockerfile name:watchers]) (push) Successful in 2m37s
/ build (map[dockerfile:./services/files/Dockerfile name:files]) (push) Successful in 2m52s
/ build (map[dockerfile:./services/api/Dockerfile name:api]) (push) Successful in 3m2s
/ build (map[dockerfile:./services/app/Dockerfile name:app]) (push) Successful in 31s
/ build (map[dockerfile:./services/tasks/Dockerfile name:tasks]) (push) Successful in 2m44s
/ deploy (push) Successful in 48s
chore(init): available sources
2025-04-13 10:46:53 +02:00

19 lines
400 B
JavaScript
Executable file

#!/usr/bin/env node
const dotenv = require("dotenv")
const applyConvention = require("@modjo/hasura/dev/apply-convention")
dotenv.config({ path: ".env" })
const pgPort = process.env.EXPOSE_PG_PORT || 4204
const main = async () => {
await applyConvention({
hasuraPath: "services/hasura",
postgres: { dsn: `postgres://dev:dev@localhost:${pgPort}/dev` },
})
process.exit(0)
}
main()