An open API service indexing awesome lists of open source software.

https://github.com/derens86/join_ui

Task manager modeled on the Kanban system. Create and organize tasks using drag-and-drop features.
https://github.com/derens86/join_ui

angular angular-cdk auth bootstrap5 drag-and-drop rxjs scss

Last synced: 9 months ago
JSON representation

Task manager modeled on the Kanban system. Create and organize tasks using drag-and-drop features.

Awesome Lists containing this project

README

          

# JoinUI

**Join** is a Kanban-style project management tool built with **Angular**. It enables teams to efficiently manage tasks and projects using the Kanban methodology. Key features include task creation, prioritization, and tracking — all within a responsive and reactive user interface.

> ⚠️ **Note:** This frontend application requires the backend service **[JoinAPI](https://github.com/DerEns86/join_api)**. Make sure the backend is up and running before starting the frontend.

This project was generated with [Angular CLI](https://github.com/angular/angular-cli) version **18.2.9**.

---

## 📥 Getting Started

Follow these steps to clone the repository and set up the project locally:

### 1. Clone the Repository

```bash
git clone https://github.com/DerEns86/join_ui.git
cd join_ui
```

### 2. Install Dependencies
```bash
npm install
```

### 3. Create Environments

To create different environments for your Angular application, follow these steps:

1. Navigate to the `src` directory.
2. Run `ng g environments`.
3. Navigate to the `src/environments` directory.
4. Define the environment configuration in the new file. For example:
```typescript
export const environment = {
production: false,
API_URL: "http://localhost:8080/",
};
```

## Development server

Run `ng serve` for a dev server. Navigate to `http://localhost:4200/`. The application will automatically reload if you change any of the source files.

## Code scaffolding

Run `ng generate component component-name` to generate a new component. You can also use `ng generate directive|pipe|service|class|guard|interface|enum|module`.

## Build

Run `ng build` to build the project. The build artifacts will be stored in the `dist/` directory.

## Further help

To get more help on the Angular CLI use `ng help` or go check out the [Angular CLI Overview and Command Reference](https://angular.dev/tools/cli) page.