Voyager API
Start a new retrieval.
Body:
{
zinniaVersion: String
}
Response:
```typescript
{
id: String,
cid: String
}
Parameters:
id
: Request ID (fromPOST /retrievals
)
Body:
{
participantAddress: String,
carTooLarge: Boolean,
statusCode: Number,
endAt: String // ISO 8601
}
Dates should be formatted as ISO 8601 strings.
Response:
OK
Set up PostgreSQL with default settings:
- Port: 5432
- User: your system user name
- Password: blank
- Database: your system user name
Alternatively, set the environment variable $DATABASE_URL
with postgres://${USER}:${PASS}@${HOST}:${POST}/${DATABASE}
.
The Postgres user and database need to already exist, and the user needs full management permissions for the database.
You can also the following command to set up the PostgreSQL server via Docker:
docker run -d --name voyager-db \
-e POSTGRES_HOST_AUTH_METHOD=trust \
-e POSTGRES_USER=$USER \
-e POSTGRES_DB=$USER \
-p 5432:5432 \
postgres
Start the API service:
npm start
Run tests and linters:
npm test
Pushes to main
will be deployed automatically.
Perform manual devops using Fly.io:
$ fly deploy