Huly — All-in-One Project Management Platform (alternative to Linear, Jira, Slack, Notion, Motion)
Go to file
Denis Bykhov 626d36db7d
UBER-376 Implement new style for the tooltips (#3418)
Signed-off-by: Denis Bykhov <bykhov.denis@gmail.com>
2023-06-09 19:06:15 +07:00
.github Update sanity DB restore (#2836) 2023-06-09 16:36:55 +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 Update sanity DB restore (#2836) 2023-06-09 16:36:55 +06:00
deploy Rewrite README.md to remove rushx dev setup (#2526) 2023-01-24 19:36:45 +06:00
dev Update sanity DB restore (#2836) 2023-06-09 16:36:55 +06:00
models UBER-376 Implement new style for the tooltips (#3418) 2023-06-09 19:06:15 +07:00
packages UBER-376 Implement new style for the tooltips (#3418) 2023-06-09 19:06:15 +07:00
plugins UBER-376 Implement new style for the tooltips (#3418) 2023-06-09 19:06:15 +07:00
pods Update sanity DB restore (#2836) 2023-06-09 16:36:55 +06:00
products/tracker TSK-1009: Configurable platform (#3055) 2023-04-25 14:34:10 +07:00
server Update sanity DB restore (#2836) 2023-06-09 16:36:55 +06:00
server-plugins UBER-384 All collaborators get notification when mention anything (#3361) 2023-06-06 19:21:54 +06:00
templates TSK-1150: Rollback svelte (#2966) 2023-04-12 23:46:28 +07:00
tests Update sanity DB restore (#2836) 2023-06-09 16:36:55 +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 Update sanity DB restore (#2836) 2023-06-09 16:36:55 +06: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 Update sanity DB restore (#2836) 2023-06-09 16:36:55 +06: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.