devhawk / dbos-ticket-vendor

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

DBOS Hello

This is a DBOS app bootstrapped with npx @dbos-inc/dbos-sdk init.

Getting Started

Before you can launch your app, you need a database. DBOS works with any Postgres database, but to make things easier, we've provided a script that starts a Docker Postgres container and creates a database. On Linux or Mac, run:

export PGPASSWORD=dbos
./start_postgres_docker.sh

On Windows (cmd), run:

set PGPASSWORD=dbos
start_postgres_docker.bat

If successful, the script should print Database started successfully!.

Then, let's run a schema migration to create some tables:

npx dbos-sdk migrate

If successful, the migration should print Migration successful!.

Next, build and run the app:

npm run build
npx dbos-sdk start

To see that it's working, visit this URL in your browser: http://localhost:3000/greeting/dbos. You should get this message: Hello, dbos! You have been greeted 1 times. Each time you refresh the page, the counter should go up by one!

Congratulations! You just launched a DBOS application.

Next Steps

About


Languages

Language:TypeScript 61.0%Language:JavaScript 33.0%Language:Shell 3.2%Language:Liquid 2.7%