Start pgvector from a versioned template
Use the PostgreSQL 16 pgvector template and create the application database, credentials, extension, tables, and indexes required by the search workload.
Start PostgreSQL with the pgvector extension, connect an embedding application, verify vector writes and nearest-neighbor queries, and test persistence.
Candidate release
pgvector
SOURCE
Git
REGION
de
ROUTE
HTTPS
01Source received
02Build completed
03Runtime started
04Health check passed
Promoted route
production.adios.run
A production path for
The production path
The application or service is only one part of production. Build evidence, runtime state, health, secrets, logs, routes, and the promoted version should remain inspectable together.
Use the PostgreSQL 16 pgvector template and create the application database, credentials, extension, tables, and indexes required by the search workload.
Vectors, source records, and indexes live on persistent PostgreSQL storage. Define backup, restore, re-embedding, and index-rebuild expectations before launch.
Measure ingestion and query behavior with representative dimensions and row counts, then inspect application and database failures together.
From source to release
Use the source and production behavior the project already has. The manifest records what the platform should build or provision and how the result becomes ready.
Bring the existing repository, or inspect and deploy one of the exact starter variants linked below.
$adios loginKeep commands, runtime or service version, health behavior, and secret references in adios.yaml.
$git diff -- adios.yamlFollow build and runtime evidence, verify the candidate, and open the promoted route or service connection.
$adios upname: vector-db
template: pgvector:16
env:
POSTGRES_USER: app
POSTGRES_PASSWORD: secret://POSTGRES_PASSWORD
POSTGRES_DB: searchDeployable starting points
Deploy the exact PostgreSQL 16 pgvector variant, then connect it to a FastAPI, Node.js, or other embedding application.
Data services
PostgreSQL 15, 16, and 17 templates, plus PostgreSQL 16 with pgvector.
git clone https://github.com/adiosdotdev/templates.git
cd templates/pgvector/16
adios upBefore production
The safest first release starts with a reproducible build or service configuration and a preview that exercises the dependencies production will actually use.
Questions, answered
Review the runtime or service boundary, template path, failure behavior, and production checks before creating the first release.
Yes. Choose the pgvector template that matches the version or configuration you need, store credentials as Adios secrets, and deploy it from the console or with adios up.
Vectors, source records, and indexes live on persistent PostgreSQL storage. Define backup, restore, re-embedding, and index-rebuild expectations before launch.
Yes. The pgvector:16 template starts PostgreSQL 16 with the vector extension available. Your application still owns schema, migrations, embedding generation, and query design.
Yes. Inject the PostgreSQL connection string into the FastAPI runtime and verify ingestion, vector queries, dependency failure, and reconnect behavior.
Store sensitive values in Adios secrets and reference them with secret://NAME. Do not place production credentials directly in adios.yaml or commit them to Git.
Verify authentication, application connectivity, write and read behavior, restart persistence, backup or recovery expectations, capacity, and the failure behavior of every dependent application.
Related deployment paths
Choose a PostgreSQL version, keep database credentials out of Git, attach persistent storage, connect the application, and verify data after a restart.
Deploy a FastAPI service with its ASGI import target, dependency install, runtime port, health endpoint, secrets, and promoted release tied to source.
Run a Python web app or worker with the dependency file, process command, health route, and secret-backed configuration kept beside the source.
Deploy scheduled jobs, webhook processors, approval gates, maintenance tasks, and operational automation from a versioned workflow manifest.
The first release
Start from the repository or a template, review the deployment contract, and inspect what becomes the promoted production version.