mirror of
https://github.com/logto-io/logto.git
synced 2024-12-16 20:26:19 -05:00
chore: add Render deploy (#1593)
* chore: add Render deploy * fix: fix database name * chore: update README Co-authored-by: Gao Sun <gao@silverhand.io>
This commit is contained in:
parent
bb1c74e268
commit
ff01f8b80d
2 changed files with 32 additions and 12 deletions
19
README.md
19
README.md
|
@ -9,18 +9,13 @@
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
<p align="center">
|
<p align="center">
|
||||||
<a href="https://github.com/logto-io/logto/releases">
|
|
||||||
<img src="https://img.shields.io/github/v/release/logto-io/logto?color=7958FF" alt="release" />
|
[![release](https://img.shields.io/github/v/release/logto-io/logto?color=7958FF)](https://github.com/logto-io/logto/releases)
|
||||||
</a>
|
[![core coverage](https://img.shields.io/codecov/c/github/logto-io/logto?label=core%20coverage)](https://app.codecov.io/gh/logto-io/logto)
|
||||||
<a href="https://gitpod.io/#https://github.com/logto-io/logto">
|
[![checks](https://img.shields.io/github/checks-status/logto-io/logto/master)](https://github.com/logto-io/logto/actions?query=branch%3Amaster)
|
||||||
<img src="https://img.shields.io/badge/gitpod-available-blue" alt="gitpod">
|
[![gitpod](https://img.shields.io/badge/gitpod-available-f09439)](https://gitpod.io/#https://github.com/logto-io/logto)
|
||||||
</a>
|
[![render](https://img.shields.io/badge/render-deploy-5364e9)](https://render.com/deploy?repo=https://github.com/logto-io/logto)
|
||||||
<a href="https://app.codecov.io/gh/logto-io/logto">
|
|
||||||
<img src="https://img.shields.io/codecov/c/github/logto-io/logto?label=core%20coverage" alt="core coverage" />
|
|
||||||
</a>
|
|
||||||
<a href="https://github.com/logto-io/logto/actions?query=branch%3Amaster">
|
|
||||||
<img src="https://img.shields.io/github/checks-status/logto-io/logto/master" alt="checks">
|
|
||||||
</a>
|
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
# Logto
|
# Logto
|
||||||
|
|
25
render.yaml
Normal file
25
render.yaml
Normal file
|
@ -0,0 +1,25 @@
|
||||||
|
services:
|
||||||
|
- type: web
|
||||||
|
name: logto
|
||||||
|
env: docker
|
||||||
|
repo: https://github.com/logto-io/logto.git
|
||||||
|
region: oregon
|
||||||
|
branch: master
|
||||||
|
envVars:
|
||||||
|
- key: ENDPOINT
|
||||||
|
value: true
|
||||||
|
- key: TRUST_PROXY_HEADER
|
||||||
|
value: true
|
||||||
|
- key: NO_INQUIRY
|
||||||
|
value: 0
|
||||||
|
- key: ALL_YES
|
||||||
|
value: 1
|
||||||
|
- key: DB_URL_DEFAULT
|
||||||
|
fromDatabase:
|
||||||
|
name: logto-database
|
||||||
|
property: connectionString
|
||||||
|
|
||||||
|
databases:
|
||||||
|
- name: logto-database
|
||||||
|
databaseName: logto
|
||||||
|
ipAllowList: [] # only allow internal connections
|
Loading…
Reference in a new issue