Render on latest image (#3223)
* Update render setup to use latest images * Update render setup to use latest images * Fixes * Migrate demo seeds to json * Update plans * Update plans
This commit is contained in:
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@ -1,6 +1,6 @@
|
|||||||
import { EntityManager } from 'typeorm';
|
import { EntityManager } from 'typeorm';
|
||||||
|
|
||||||
import { companiesDemo } from './companies-demo';
|
import companiesDemo from './companies-demo.json';
|
||||||
|
|
||||||
export const companyPrefillData = async (
|
export const companyPrefillData = async (
|
||||||
entityManager: EntityManager,
|
entityManager: EntityManager,
|
||||||
|
|||||||
File diff suppressed because it is too large
Load Diff
File diff suppressed because one or more lines are too long
@ -1,6 +1,6 @@
|
|||||||
import { EntityManager } from 'typeorm';
|
import { EntityManager } from 'typeorm';
|
||||||
|
|
||||||
import { peopleDemo } from './people-demo';
|
import peopleDemo from './people-demo.json';
|
||||||
|
|
||||||
export const personPrefillData = async (
|
export const personPrefillData = async (
|
||||||
entityManager: EntityManager,
|
entityManager: EntityManager,
|
||||||
|
|||||||
13
render.yaml
13
render.yaml
@ -1,8 +1,10 @@
|
|||||||
services:
|
services:
|
||||||
- type: web
|
- type: web
|
||||||
name: front
|
name: front
|
||||||
runtime: docker
|
runtime: image
|
||||||
dockerfilePath: ./packages/twenty-docker/prod/twenty-front/Dockerfile
|
plan: free
|
||||||
|
image:
|
||||||
|
url: twentycrm/twenty-front:latest
|
||||||
autoDeploy: false
|
autoDeploy: false
|
||||||
envVars:
|
envVars:
|
||||||
- key: REACT_APP_SERVER_BASE_URL
|
- key: REACT_APP_SERVER_BASE_URL
|
||||||
@ -12,10 +14,12 @@ services:
|
|||||||
envVarKey: RENDER_EXTERNAL_URL
|
envVarKey: RENDER_EXTERNAL_URL
|
||||||
- type: web
|
- type: web
|
||||||
name: server
|
name: server
|
||||||
runtime: docker
|
runtime: image
|
||||||
dockerfilePath: ./packages/twenty-docker/prod/twenty-server/Dockerfile
|
image:
|
||||||
|
url: twentycrm/twenty-server:latest
|
||||||
dockerCommand: "sh -c ./scripts/render-run.sh"
|
dockerCommand: "sh -c ./scripts/render-run.sh"
|
||||||
autoDeploy: false
|
autoDeploy: false
|
||||||
|
plan: standard
|
||||||
envVars:
|
envVars:
|
||||||
- key: FRONT_BASE_URL
|
- key: FRONT_BASE_URL
|
||||||
fromService:
|
fromService:
|
||||||
@ -44,6 +48,7 @@ services:
|
|||||||
sizeGB: 5
|
sizeGB: 5
|
||||||
- type: pserv
|
- type: pserv
|
||||||
name: twenty_postgres
|
name: twenty_postgres
|
||||||
|
plan: starter
|
||||||
runtime: image
|
runtime: image
|
||||||
image:
|
image:
|
||||||
url: twentycrm/twenty-postgres:latest
|
url: twentycrm/twenty-postgres:latest
|
||||||
|
|||||||
Reference in New Issue
Block a user