Spaces:
Sleeping
Sleeping
File size: 485 Bytes
401aaf2 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 | # Render Blueprint — one-click deploy for SatDetect
# https://render.com/docs/blueprint-spec
databases:
- name: satdetect-db
plan: free
databaseName: satdetect
user: satdetect
services:
- type: web
name: satdetect
runtime: docker
plan: free
dockerfilePath: ./Dockerfile
envVars:
- key: DATABASE_URL
fromDatabase:
name: satdetect-db
property: connectionString
- key: SECRET_KEY
generateValue: true
|