Huly — All-in-One Project Management Platform (alternative to Linear, Jira, Slack, Notion, Motion)
Go to file
Denis Bykhov d8e69eb6bc
UBER-220 TG/GMAIL new message inbox notifications (#3246)
Signed-off-by: Denis Bykhov <bykhov.denis@gmail.com>
2023-05-24 13:09:11 +06:00
.github Remove bump from CI (#2670) 2023-02-21 13:25:01 +06:00
.vscode TSK-1414: Fix exceptions in Kanban (#3119) (#3123) 2023-05-03 20:09:48 +06:00
cloud/app Bump versions (#2430) 2022-12-07 17:40:54 +06:00
common UBER-183 Stored filter should store View settings (#3245) 2023-05-24 13:36:19 +07:00
deploy Rewrite README.md to remove rushx dev setup (#2526) 2023-01-24 19:36:45 +06:00
dev UBER-174: Introduce createOn every there (#3222) 2023-05-20 00:37:22 +07:00
models UBER-220 TG/GMAIL new message inbox notifications (#3246) 2023-05-24 13:09:11 +06:00
packages UBER-32 Inbox redesign (#3242) 2023-05-24 13:35:48 +07:00
plugins UBER-220 TG/GMAIL new message inbox notifications (#3246) 2023-05-24 13:09:11 +06:00
pods UBER-81: Fix move project (#3182) 2023-05-16 00:16:41 +07:00
products/tracker TSK-1009: Configurable platform (#3055) 2023-04-25 14:34:10 +07:00
server UBER-174: Introduce createOn every there (#3222) 2023-05-20 00:37:22 +07:00
server-plugins UBER-220 TG/GMAIL new message inbox notifications (#3246) 2023-05-24 13:09:11 +06:00
templates TSK-1150: Rollback svelte (#2966) 2023-04-12 23:46:28 +07:00
tests [UBER-178] New way of All/Active/Backlog should be in URI (#3228) 2023-05-24 12:47:58 +06:00
tools/apm TSK-656 (#2636) 2023-02-15 09:14:20 +06:00
.gitattributes add platform package 2021-08-03 03:40:40 +02:00
.gitignore TSK-742: Use partial binary protocol with ability on/off (#3153) 2023-05-11 00:16:13 +07:00
.npmrc Migrate to hcengineering and publish to github packages (#2273) 2022-09-21 14:08:25 +06:00
.nvmrc Configurable OpenAI (#2529) 2023-01-24 20:42:47 +07:00
.prettierrc Prettier config file (#319) 2021-11-17 14:28:22 +01:00
.travis.yml add platform package 2021-08-03 03:40:40 +02:00
changelog.md Create Help Center (#2313) 2022-10-20 09:45:57 +07:00
LICENSE Initial commit 2021-08-02 21:39:24 +02:00
package-lock.json emojis (#2109) 2022-06-21 13:55:17 +06:00
README.md UBER-83: Add BrowserStack notice into readme (#3178) 2023-05-15 22:51:27 +07:00
rush.json TSK-742: Use partial binary protocol with ability on/off (#3153) 2023-05-11 00:16:13 +07:00

Anticrm Platform

Anticrm Platform is a framework that help building business applications (such as CRM) fast. Current exemplary applications include Chat, Task Management, and Applicant Tracking System.

Installation

You need Microsoft's rush to install application. Install rush with $ npm install -g @microsoft/rush command and run $ rush install from the repository root, followed by $ rush build.

Build and run inside docker

It is possible to setup all environment required with local docker containers. Supported both amd64 and armv8 containers.

cd ./dev/
rush build    # Will build all required packages.
rush bundle   # Will prepare bundles.
rush docker:build   # Will build docker containers for all applications.
docker-compose up -d --force-recreate # Will setup all containers

By default docker volumes dev_db dev_elastic dev_files will be created for mongo/elastic/minio instances.

Before we could start we need to create workspace/account and associate it with workspace.

cd ./tool
rushx run-local create-workspace ws1 -o DevWorkspace # Create workspace
rushx run-local create-account user1 -p 1234 -f John -l Appleseed # Create account
rushx run-local configure sanity-ws --list --enable '*' # Enable all modules, then if they are not yet intended to be used by wide audience.
rushx run-local assign-workspace user1 ws1 # Assign workspace to user

Following URL http://localhost:8087 will lead us to app in production mode.

Run in development mode

cd dev/prod
rushx dev-server

Then go to http://localhost:8080

Update project structure and database

If projects structure is updated it might be needed to relink and rebuild projects.

rush update
rush build

It also might be required to upgrade running database.

cd ./dev/tool
rushx upgrade

In cases when project doesn't build for any logical reason try:

rush update
rush build --clean

Tests

Unit tests

rush lint

UI tests

cd ./tests
rush build
rush bundle
rush docker:build
## creates test docker containers and setups test database
./prepare.sh
## runs UI tests
rushx uitest

Package publishing

node ./common/scripts/bump.js packageName

Additional testing

This project is tested with BrowserStack.