twenty/packages/twenty-website
Félix Malfait 5fae14377a
Eslint migration 4 (#13773)
A new attempt to migrate!
2025-08-08 16:21:57 +02:00
..
public Add workflow filters to the lab (#13770) 2025-08-08 13:59:00 +00:00
src Upgrade NX (#13758) 2025-08-08 10:38:12 +02:00
.env.example Fix twenty-website CI (#10790) 2025-03-11 18:39:20 +01:00
.eslintrc.js [FIX] Out of memory while running app localy (#11341) 2025-04-02 18:35:00 +02:00
.gitignore Marketing improvements 3 (#3175) 2023-12-29 11:17:32 +01:00
keystatic.config.ts Configure Keystatic for release images (#10889) 2025-03-18 12:45:51 +01:00
next.config.js Marketing improvements 3 (#3175) 2023-12-29 11:17:32 +01:00
package.json Eslint migration 4 (#13773) 2025-08-08 16:21:57 +02:00
README.md Fix typos in website README (#12641) 2025-06-16 21:27:59 +02:00
tsconfig.json Add proper ORM and postgres support (#3978) 2024-02-14 17:53:50 +01:00

Twenty-Website

This is used for the marketing website (twenty.com). This is not related in any way to the main app, which you can find in twenty-front and twenty-server.

Getting Started

We're using Next.JS We're using Postgres for the database. Mandatory for the website to work, even locally.

  1. Copy the .env.example file to .env and fill in the values.

  2. Run the migrations:

npx nx run twenty-website:database:migrate
  1. From the root directory:
npx nx run twenty-website:dev

Then open http://localhost:3000 with your browser to see the result.

Or to build in prod:

npx nx run twenty-website:build
npx nx run twenty-website:start