Building a modern alternative to Salesforce, powered by the community.
Go to file
Charles Bochet 737e0bf3aa
Merge pull request #11 from twentyhq/charles-bochet-dummy-pr-to-test-ci
This is a dummy commit, to test e2e CI/CD process
2022-12-28 12:11:58 +01:00
.circleci Initiate circle-ci config 2022-12-28 12:01:09 +01:00
front This is a dummy commit, to test e2e CI/CD process 2022-12-28 12:10:19 +01:00
server Rename tabs to Inbox, Contacts, Insights 2022-12-05 21:47:17 +01:00
.gitignore Setup Nest and React projects 2022-12-01 15:58:08 +01:00
buildspec.yml Configure AWS codebuild to automate deploy 2022-12-02 10:12:11 +01:00
Dockerfile Configure AWS codebuild to automate deploy 2022-12-02 10:12:11 +01:00
LICENSE Initial commit 2022-12-01 14:04:40 +01:00
README.md Setup Nest and React projects 2022-12-01 15:58:08 +01:00

twenty

Welcome to Twenty!

Setup & Development

Frontend

cd front && npm install
npm run start

Browse: localhost:3000

Backend

cd server && npm install
npm run start:dev

Browse: localhost:5000

Tests

Frontend

npm run test

Backend

npm run test

Browse: localhost:5000

Production

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