Building a modern alternative to Salesforce, powered by the community.
Go to file
2023-01-04 13:13:15 +01:00
.circleci Add Hasura 2022-12-28 22:55:46 +01:00
front This is a dummy commit, to test e2e CI/CD process 2022-12-28 12:10:19 +01:00
infra Add Hasura 2022-12-28 22:55:46 +01:00
server Enable Health Check route 2022-12-28 16:59:22 +01:00
.gitignore Setup Nest and React projects 2022-12-01 15:58:08 +01:00
LICENSE Initial commit 2022-12-01 14:04:40 +01:00
README.md Add Hasura and dockerify dev env 2022-12-28 21:19:12 +01:00

twenty

Welcome to Twenty!

Setup & Development

docker-compose -f infra/dev/docker-compose.yml up --build --force-recreate

Browse:

  • FE/BE: localhost:3000
  • Hasura: localhost:8080

Tests

Ssh into the twenty-server container using:

  • docker ps to get the container id
  • docker exec -it CONTAINER_ID sh

Frontend

cd front
npm run test

Backend

cd server
npm run test

Production

cd front && npm run build
cd ../server && npm run build