Huly — All-in-One Project Management Platform (alternative to Linear, Jira, Slack, Notion, Motion)
Go to file
Denis Bykhov da07828036
Show activity line last view (#2105)
Signed-off-by: Denis Bykhov <80476319+BykhovDenis@users.noreply.github.com>
2022-06-19 23:28:31 +07:00
.github Fix build cache (#1996) 2022-06-03 23:44:11 +07:00
.vscode Leads import/upgrade (#2087) 2022-06-16 10:36:45 +07:00
cloud/app Bump minimist from 1.2.5 to 1.2.6 in /cloud/app (#1976) 2022-06-02 09:29:48 +07:00
common Show activity line last view (#2105) 2022-06-19 23:28:31 +07:00
deploy k8s deployment use secret 2021-10-23 02:05:45 +02:00
dev Add trigger for updating sub-issues project (#2079) 2022-06-17 12:07:56 +07:00
models Add Labels support (#2104) 2022-06-19 23:27:47 +07:00
packages TxMixin update modify (#2103) 2022-06-19 23:26:05 +07:00
plugins Show activity line last view (#2105) 2022-06-19 23:28:31 +07:00
pods Fix build cache (#1996) 2022-06-03 23:44:11 +07:00
products/tracker Add trigger for updating sub-issues project (#2079) 2022-06-17 12:07:56 +07:00
server TxMixin update modify (#2103) 2022-06-19 23:26:05 +07:00
server-plugins Add trigger for updating sub-issues project (#2079) 2022-06-17 12:07:56 +07:00
templates Fix Webpack errors (#2006) 2022-06-04 00:25:50 +07:00
tests Add Labels support (#2104) 2022-06-19 23:27:47 +07:00
.gitattributes add platform package 2021-08-03 03:40:40 +02:00
.gitignore Fix #1947 (#1993) 2022-06-03 11:24:38 +07: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 Show activity line last view (#2105) 2022-06-19 23:28:31 +07:00
LICENSE Initial commit 2021-08-02 21:39:24 +02:00
README.md update docs (#1277) 2022-04-04 18:11:37 +07:00
rush.json Add trigger for updating sub-issues project (#2079) 2022-06-17 12:07:56 +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

# we 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:8081/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