Huly — All-in-One Project Management Platform (alternative to Linear, Jira, Slack, Notion, Motion)
Go to file
Andrey Sobolev c01a274cef
UBERF-7690: Trigger improvements (#6340)
Signed-off-by: Andrey Sobolev <haiodo@gmail.com>
2024-08-19 10:41:31 +05:00
.github uberf-7856: fix desktop publishing CI (#6308) 2024-08-09 22:05:03 +07:00
.vscode UBERF-7690: Trigger improvements (#6340) 2024-08-19 10:41:31 +05:00
common UBERF-7690: Trigger improvements (#6340) 2024-08-19 10:41:31 +05:00
desktop UBERF-7690: Trigger improvements (#6340) 2024-08-19 10:41:31 +05:00
desktop-package uberf-7856: fix desktop publishing CI (#6308) 2024-08-09 22:05:03 +07:00
dev UBERF-7690: Trigger improvements (#6340) 2024-08-19 10:41:31 +05:00
models UBERF-7690: Trigger improvements (#6340) 2024-08-19 10:41:31 +05:00
packages UBERF-7690: Trigger improvements (#6340) 2024-08-19 10:41:31 +05:00
plugins UBERF-7690: Trigger improvements (#6340) 2024-08-19 10:41:31 +05:00
pods Fix analytics collector and ai-bot services (#6331) 2024-08-16 14:02:24 +07:00
products/tracker Use datalake storage (#6310) 2024-08-16 14:00:55 +07:00
qms-tests Updated Header layout (#6298) 2024-08-09 11:49:40 +07:00
scripts Update readme (#4772) 2024-02-26 11:02:34 +06:00
server UBERF-7690: Trigger improvements (#6340) 2024-08-19 10:41:31 +05:00
server-plugins UBERF-7690: Trigger improvements (#6340) 2024-08-19 10:41:31 +05:00
services Fix analytics collector and ai-bot services (#6331) 2024-08-16 14:02:24 +07:00
templates UBERF-7690: Trigger improvements (#6340) 2024-08-19 10:41:31 +05:00
tests UBERF-7690: Trigger improvements (#6340) 2024-08-19 10:41:31 +05:00
tools/apm Update to svelte 4.2.12 and some template fixes (#4982) 2024-03-15 16:33:12 +07:00
.gitattributes UBER-477: Uberflow dependencies (#3440) 2023-06-20 12:47:00 +07:00
.gitignore Move services to public (#6156) 2024-07-27 20:04:21 +05:00
.npmrc Migrate to hcengineering and publish to github packages (#2273) 2022-09-21 14:08:25 +06:00
.nvmrc Update node version to v20 (#4532) 2024-02-06 09:57:31 +07:00
.prettierrc Update to svelte 4.2.12 and some template fixes (#4982) 2024-03-15 16:33:12 +07:00
changelog.md Bump version to 111 (#3500) 2023-07-13 20:34:56 +06:00
LICENSE Initial commit 2021-08-02 21:39:24 +02:00
README.md Add French Language (#5870) 2024-06-20 18:43:24 +04:00
rush.json Use datalake storage (#6310) 2024-08-16 14:00:55 +07:00

Huly Platform

X (formerly Twitter) Follow GitHub License

Your star shines on us. Star us on GitHub!

About

The Huly Platform is a robust framework designed to accelerate the development of business applications, such as CRM systems. This repository includes several applications, such as Chat, Project Management, CRM, HRM, and ATS. Various teams are building products on top of the Platform, including Huly and TraceX.

Huly

Self-Hosting

If you're primarily interested in self-hosting Huly without the intention to modify or contribute to its development, please use huly-selfhost. This project offers a convenient method to host Huly using docker, designed for ease of use and quick setup. Explore this option to effortlessly enjoy Huly on your own server.

Activity

Alt

Table of Content

Pre-requisites

Verification

To verify the installation, perform the following checks in your terminal:

  • Ensure that the docker commands are available:
    docker --version
    docker compose version
    

Fast start

sh ./scripts/fast-start.sh

Installation

You need Microsoft's rush to install application.

  1. Install Rush globally using the command:
    npm install -g @microsoft/rush
    
  2. Navigate to the repository root and run the following commands:
    rush install
    rush build
    

Alternatively, you can just execute:

sh ./scripts/presetup-rush.sh

Build and run

Development environment setup requires Docker to be installed on system.

Support is available for both amd64 and arm64 containers on Linux and macOS.

cd ./dev/
rush build    # Will build all the required packages. 
# rush rebuild  # could be used to omit build cache.
rush bundle   # Will prepare bundles.
rush package  # Will build all webpack packages.
rush validate # Will validate all sources with typescript and generate d.ts files required for ts-node execution.
rush svelte-check # Optional. svelte files validation using svelte-check.
rush docker:build   # Will build Docker containers for all applications in the local Docker environment.
rush docker:up # Will set up all the containers

Be aware rush docker:build will automatically execute all required phases like build, bundle, package.

Alternatively, you can just execute:

sh ./scripts/build.sh

By default, Docker volumes named dev_db, dev_elastic, and dev_files will be created for the MongoDB, Elasticsearch, and MinIO instances.

Before you can begin, you need to create a workspace and an account and associate it with the workspace.

cd ./tool # dev/tool in the repository root
rushx run-local create-workspace ws1 -w DevWorkspace # Create workspace
rushx run-local create-account user1 -p 1234 -f John -l Appleseed # Create account
rushx run-local configure ws1 --list --enable '*' # Enable all modules, even if they are not yet intended to be used by a wide audience.
rushx run-local assign-workspace user1 ws1 # Assign workspace to user.
rushx run-local confirm-email user1 # To allow the creation of additional test workspaces.

Alternatively, you can just execute:

sh ./scripts/create-workspace.sh

Accessing the URL http://localhost:8087 will lead you to the app in production mode.

Limitations:

  • Local installation does not support sending emails, thus disabling functionalities such as password recovery and email notifications.
  • Integrations with Telegram, Gmail, and other content sources are exclusively available as Docker containers, sourced from private repositories. However, these integrations are fully functional and can be utilized with the platform.

Run in development mode

Development mode allows for live reloading and a smoother development process.

cd dev/prod
rushx dev-server

Then go to http://localhost:8080

Use the following login credentials:

Email: user1
Password: 1234
Workspace: ws1

Update project structure and database

If the project's structure is updated, it may be necessary to relink and rebuild the projects.

rush update
rush build

It may also be necessary to upgrade the running database.

cd ./dev/tool
rushx upgrade -f

Troubleshooting

If a build fails, but the code is correct, try to delete the build cache and retry.

# from the project root
rm -rf common/temp/build-cache

Build & Watch

For development purpose rush build:watch action could be used.

It includes build and validate phases in watch mode.

Tests

Unit tests

rush test # To execute all tests

rushx test # For individual test execution inside a package directory

UI tests

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

To execute tests in the development environment, please follow these steps:

cd ./tests
./create-local.sh ## use ./restore-local.sh if you only want to restore the workspace to a predefined initial state for sanity.
cd ./sanity
rushx dev-uitest # To execute all tests against the development environment.
rushx dev-debug -g 'pattern' # To execute tests in debug mode with only the matching test pattern.

Package publishing

node ./common/scripts/bump.js -p projectName

Additional testing

This project is tested with BrowserStack.

© 2024 Hardcore Engineering Inc.