Remove SQLite from twenty-website (#5142)

Removed SQLite from twenty-website

---------

Co-authored-by: Ady Beraud <[email protected]>
Co-authored-by: Félix Malfait <[email protected]>
This commit is contained in:
Ady Beraud
2024-04-24 17:02:02 +02:00
committed by GitHub
co-authored by Ady Beraud Félix Malfait
parent 0f47426d19
commit 5d2d6bae08
18 changed files with 57 additions and 848 deletions
+14
View File
@@ -17,6 +17,14 @@ concurrency:
jobs:
website-build:
runs-on: ubuntu-latest
services:
postgres:
image: twentycrm/twenty-postgres
env:
POSTGRES_PASSWORD: twenty
POSTGRES_USER: twenty
ports:
- 5432:5432
steps:
- uses: actions/checkout@v4
- name: Setup Node.js
@@ -25,5 +33,11 @@ jobs:
node-version: "18"
- name: Website / Install Dependencies
run: yarn
- name: Website / Run migrations
run: npx nx database:migrate twenty-website
env:
DATABASE_PG_URL: postgres://twenty:twenty@localhost:5432/default
- name: Website / Build Website
run: npx nx build twenty-website
env:
DATABASE_PG_URL: postgres://twenty:twenty@localhost:5432/default