Huly — All-in-One Project Management Platform (alternative to Linear, Jira, Slack, Notion, Motion)
Go to file
Denis Bunakalya 30aa78fa52
tsk-332 Fix missing scroll in notifications popup (#2310)
Signed-off-by: Denis Bunakalya <denis.bunakalya@xored.com>
2022-10-17 19:23:18 +07:00
.github Bump paambaati/codeclimate-action from 3.0.0 to 3.1.0 (#2307) 2022-10-15 23:18:23 +07:00
.vscode Fix password bugs (#2235) 2022-07-14 08:45:51 +06:00
cloud/app Migrate to hcengineering and publish to github packages (#2273) 2022-09-21 14:08:25 +06:00
common Allow to specify project to sprints (#2275) 2022-09-22 00:32:48 +07:00
deploy k8s deployment use secret 2021-10-23 02:05:45 +02:00
dev Bump and publish new versions (#2306) 2022-10-14 13:13:09 +06:00
models Fix copying text to clipboard for Safari 2022-10-17 13:51:51 +07:00
packages tsk-332 Fix missing scroll in notifications popup (#2310) 2022-10-17 19:23:18 +07:00
plugins Fix copying text to clipboard for Safari 2022-10-17 13:51:51 +07:00
pods Allow to specify project to sprints (#2275) 2022-09-22 00:32:48 +07:00
products/tracker Bump and publish new versions (#2306) 2022-10-14 13:13:09 +06:00
server Add task number field for the fulltext elastic search (#2291) 2022-10-10 17:32:12 +07:00
server-plugins Bump and publish new versions (#2306) 2022-10-14 13:13:09 +06:00
templates Add lang UT (#2297) 2022-10-13 14:16:39 +06:00
tests Issue improvements + Process Support (#2281) 2022-10-05 13:41:02 +07:00
.gitattributes add platform package 2021-08-03 03:40:40 +02:00
.gitignore Vacancy referencing (#2267) 2022-09-09 09:44:33 +06:00
.npmrc Migrate to hcengineering and publish to github packages (#2273) 2022-09-21 14:08:25 +06:00
.nvmrc Add ".nvmrc" (#1276) 2022-04-05 11:20:25 +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 Initial Sprints support (#2246) 2022-08-03 14:05:19 +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 Add task number field for the fulltext elastic search (#2291) 2022-10-10 17:32:12 +07:00
rush.json Allow to specify project to sprints (#2275) 2022-09-22 00:32:48 +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.

Run in development mode

cd dev/prod
rushx dev

Then go to http://localhost:8080/login:component:LoginApp and use following credentials to login into the system:

To connect to running local server dev-server command should be used instead.

Build and run inside docker

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

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

# wait a few seconds delay, to be sure elastic is up and running.
./deploy/setup-es-attachment-pipeline.sh    # Setup elastic search plugin configuration.

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 ./dev/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 assign-workspace user1 ws1 # Assign worksapce to user

Following URL http://localhost:8087/login:component:LoginApp will lead us to app.

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

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

npm login --registry=https://npm.pkg.github.com --scope=@hcengineering/anticrm
npm publish