Ever® Teams™ - The Workplace for Humans. Open Work & Productivity Platform - https://ever.team
557
stars
6,280
commits
TypeScript
primary language
Sep 11, 2026
updated
Ever® Teams™ - Open Work and Project Management Platform.

NOTE: Platform currently is in active development stage / WIP, please use with caution!
Below is a list of the most important planned features:



Note: Currently WIP, the screenshot is just a temporary picture :)
Ever® Teams™ Platform (https://app.ever.team) is built on top of our Business Management Platform (ERP/CRM/HRM) - Ever® Gauzy™ Platform (https://gauzy.co), which itself is a part of our larger Open Platform for On-Demand and Sharing Economies - Ever®. You can get more information about all our products at https://ever.co.
Below is a list of frameworks/libraries we are using across platform apps:
Please refer to our official Platform Documentation (WIP) and to our Wiki (WIP).
docker-compose -f docker-compose.demo.yml up, if you want to run the platform in basic configuration (e.g. for Demo / explore functionality / quick run) using our prebuilt Docker images. Check .env.demo.compose file for different settings (optionally). (Note: Docker Compose will use latest images pre-build automatically from head of master branch using GitHub CI/CD.)docker-compose up, if you want to run the platform in production configuration using our prebuilt Docker images. Check .env.compose file for different settings (optionally). (Note: Docker Compose will use latest images pre-build automatically from head of master branch using GitHub CI/CD.)docker-compose -f docker-compose.build.yml up, if you want to build everything (code and Docker images) locally. Check .env.compose file for different settings (optionally). (Note: this can be long process because it builds whole platform locally. Other options above are much faster!)Notes:
docker-compose command with -d option to run it in the "detached" mode (allows containers to run in the background, separate from the terminal).GAUZY_API_SERVER_URL and NEXT_PUBLIC_GAUZY_API_SERVER_URL, see more in the Run with a Self-hosted Backend section.Docker build definitions are stored under .deploy/web/ to keep the repository root tidy. Docker Compose files stay at the root, so they are easy to discover and invoke (docker-compose -f ...).
Run with Public Images:
docker pull everco/ever-teams-webapp . command.docker run -p 127.0.0.1:3030:3030/tcp everco/ever-teams-webapp.Note: To build such images on each release (push to our master branch), we are using relevant Github Action.
Build and Run Locally:
docker build . -t ever-teams-webapp -f .deploy/web/Dockerfile.docker run -p 127.0.0.1:3030:3030/tcp ever-teams-webapp.Note: By default, Ever Teams web frontend will be connected to our production Ever Gauzy API API endpoint https://api.ever.team. You can change it in the environment variables GAUZY_API_SERVER_URL and NEXT_PUBLIC_GAUZY_API_SERVER_URL, see more in the Run with a Self-hosted Backend section.
We have Ever Teams Docker images published into:
yarn installyarn build:web && yarn start:web OR yarn start:web:devNotes:
GAUZY_API_SERVER_URL and NEXT_PUBLIC_GAUZY_API_SERVER_URL, see the Run with a Self-hosted Backend section below.GAUZY_API_SERVER_URL and NEXT_PUBLIC_GAUZY_API_SERVER_URL in Ever Teams .env file (see https://github.com/ever-co/ever-teams/blob/develop/apps/web/.env.sample). For example, you can set those env vars to http://localhost:3000 if Gauzy APIs run on that host & port.yarn installyarn build:web && yarn start:web OR yarn start:web:devNote: Ever® Teams™ requires access to Ever® Gauzy™ Platform APIs, provided by another project - Ever® Gauzy™ Platform, see https://github.com/ever-co/ever-gauzy (and also https://gauzy.co). Specifically, you might be interested in the apps/api and apps/server folders of the mono-repo for the Gauzy API & Gauzy Server code.
DevContainers for VSCode are supported (WIP).
Please see our Wiki.
/apps/web - NextJs-based (React) Web App at https://app.ever.team (deployed from main branch)/apps/mobile - Expo (ReactNative) powered mobile app/apps/desktop - Electron-based Desktop Application (customized build from Ever Gauzy Desktop Timer App)/apps/extensions - Browser Extensions (powered by https://github.com/PlasmoHQ/plasmo)/apps/server-api - Ever Teams API Server (customized build from Ever Gauzy API Server)/apps/server-web - Electron-based Ever Teams Web Server that serves Ever Teams NextJs frontend (wraps apps/web folder)Ever Teams Platform follows good security practices, but 100% security cannot be guaranteed in any software! Ever Teams Platform is provided AS IS without any warranty. Use at your own risk! See more details in the LICENSES.md.
In a production setup, all client-side to server-side (backend, APIs) communications should be encrypted using HTTPS/WSS/SSL (REST APIs, GraphQL endpoint, Socket.io WebSockets, etc.).
If you discover any issue regarding security, please disclose the information responsibly by emailing mailto:security@ever.co and not by creating a GitHub issue.
This software is available under the following licenses:
We support the open-source community. If you're building awesome non-profit/open-source projects, we're happy to help and will provide (subject to acceptance criteria) Ever Teams Enterprise edition license and free hosting option! Feel free to contact us at mailto:ever@ever.co to make a request. More details are explained in our Wiki.
Ever® is a registered trademark of Ever Co. LTD. Ever® Demand™, Ever® Gauzy™, Ever® Teams™ and Ever® OpenSaaS™ are all trademarks of Ever Co. LTD.
The trademarks may only be used with the written permission of Ever Co. LTD. and may not be used to promote or otherwise market competitive products or services.
All other brand and product names are trademarks, registered trademarks, or service marks of their respective holders.
See our contributors list in CONTRIBUTORS.md. You can also view a full list of our contributors tracked by GitHub.
(top 30 of 42)
TypeScript
95.8%
JavaScript
2.6%
Ever® Teams™ - The Workplace for Humans. Open Work & Productivity Platform - https://ever.team
557
stars
6,280
commits
TypeScript
primary language
Sep 11, 2026
updated
Ever® Teams™ - Open Work and Project Management Platform.

NOTE: Platform currently is in active development stage / WIP, please use with caution!
Below is a list of the most important planned features:



Note: Currently WIP, the screenshot is just a temporary picture :)
Ever® Teams™ Platform (https://app.ever.team) is built on top of our Business Management Platform (ERP/CRM/HRM) - Ever® Gauzy™ Platform (https://gauzy.co), which itself is a part of our larger Open Platform for On-Demand and Sharing Economies - Ever®. You can get more information about all our products at https://ever.co.
Below is a list of frameworks/libraries we are using across platform apps:
Please refer to our official Platform Documentation (WIP) and to our Wiki (WIP).
docker-compose -f docker-compose.demo.yml up, if you want to run the platform in basic configuration (e.g. for Demo / explore functionality / quick run) using our prebuilt Docker images. Check .env.demo.compose file for different settings (optionally). (Note: Docker Compose will use latest images pre-build automatically from head of master branch using GitHub CI/CD.)docker-compose up, if you want to run the platform in production configuration using our prebuilt Docker images. Check .env.compose file for different settings (optionally). (Note: Docker Compose will use latest images pre-build automatically from head of master branch using GitHub CI/CD.)docker-compose -f docker-compose.build.yml up, if you want to build everything (code and Docker images) locally. Check .env.compose file for different settings (optionally). (Note: this can be long process because it builds whole platform locally. Other options above are much faster!)Notes:
docker-compose command with -d option to run it in the "detached" mode (allows containers to run in the background, separate from the terminal).GAUZY_API_SERVER_URL and NEXT_PUBLIC_GAUZY_API_SERVER_URL, see more in the Run with a Self-hosted Backend section.Docker build definitions are stored under .deploy/web/ to keep the repository root tidy. Docker Compose files stay at the root, so they are easy to discover and invoke (docker-compose -f ...).
Run with Public Images:
docker pull everco/ever-teams-webapp . command.docker run -p 127.0.0.1:3030:3030/tcp everco/ever-teams-webapp.Note: To build such images on each release (push to our master branch), we are using relevant Github Action.
Build and Run Locally:
docker build . -t ever-teams-webapp -f .deploy/web/Dockerfile.docker run -p 127.0.0.1:3030:3030/tcp ever-teams-webapp.Note: By default, Ever Teams web frontend will be connected to our production Ever Gauzy API API endpoint https://api.ever.team. You can change it in the environment variables GAUZY_API_SERVER_URL and NEXT_PUBLIC_GAUZY_API_SERVER_URL, see more in the Run with a Self-hosted Backend section.
We have Ever Teams Docker images published into:
yarn installyarn build:web && yarn start:web OR yarn start:web:devNotes:
GAUZY_API_SERVER_URL and NEXT_PUBLIC_GAUZY_API_SERVER_URL, see the Run with a Self-hosted Backend section below.GAUZY_API_SERVER_URL and NEXT_PUBLIC_GAUZY_API_SERVER_URL in Ever Teams .env file (see https://github.com/ever-co/ever-teams/blob/develop/apps/web/.env.sample). For example, you can set those env vars to http://localhost:3000 if Gauzy APIs run on that host & port.yarn installyarn build:web && yarn start:web OR yarn start:web:devNote: Ever® Teams™ requires access to Ever® Gauzy™ Platform APIs, provided by another project - Ever® Gauzy™ Platform, see https://github.com/ever-co/ever-gauzy (and also https://gauzy.co). Specifically, you might be interested in the apps/api and apps/server folders of the mono-repo for the Gauzy API & Gauzy Server code.
DevContainers for VSCode are supported (WIP).
Please see our Wiki.
/apps/web - NextJs-based (React) Web App at https://app.ever.team (deployed from main branch)/apps/mobile - Expo (ReactNative) powered mobile app/apps/desktop - Electron-based Desktop Application (customized build from Ever Gauzy Desktop Timer App)/apps/extensions - Browser Extensions (powered by https://github.com/PlasmoHQ/plasmo)/apps/server-api - Ever Teams API Server (customized build from Ever Gauzy API Server)/apps/server-web - Electron-based Ever Teams Web Server that serves Ever Teams NextJs frontend (wraps apps/web folder)Ever Teams Platform follows good security practices, but 100% security cannot be guaranteed in any software! Ever Teams Platform is provided AS IS without any warranty. Use at your own risk! See more details in the LICENSES.md.
In a production setup, all client-side to server-side (backend, APIs) communications should be encrypted using HTTPS/WSS/SSL (REST APIs, GraphQL endpoint, Socket.io WebSockets, etc.).
If you discover any issue regarding security, please disclose the information responsibly by emailing mailto:security@ever.co and not by creating a GitHub issue.
This software is available under the following licenses:
We support the open-source community. If you're building awesome non-profit/open-source projects, we're happy to help and will provide (subject to acceptance criteria) Ever Teams Enterprise edition license and free hosting option! Feel free to contact us at mailto:ever@ever.co to make a request. More details are explained in our Wiki.
Ever® is a registered trademark of Ever Co. LTD. Ever® Demand™, Ever® Gauzy™, Ever® Teams™ and Ever® OpenSaaS™ are all trademarks of Ever Co. LTD.
The trademarks may only be used with the written permission of Ever Co. LTD. and may not be used to promote or otherwise market competitive products or services.
All other brand and product names are trademarks, registered trademarks, or service marks of their respective holders.
See our contributors list in CONTRIBUTORS.md. You can also view a full list of our contributors tracked by GitHub.
(top 30 of 42)
TypeScript
95.8%
JavaScript
2.6%