Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/char2sgu/tasked

A well-organized task management PWA built with Angular and Nest.
https://github.com/char2sgu/tasked

angular app dependency-injection material-design mikro-orm nestjs pwa rxjs typescript

Last synced: about 1 month ago
JSON representation

A well-organized task management PWA built with Angular and Nest.

Awesome Lists containing this project

README

        

# Tasked

A task management [PWA](https://developer.mozilla.org/en-US/docs/Web/Progressive_web_apps) implemented with Angular and Nest.

> This repository is a continuation of [tasked_backend](https://github.com/Char2sGu/tasked_backend) and [tasked_frontend](https://github.com/Char2sGu/tasked_frontend).

## Features

- Responsive - All Devices: Desktop, Tablet and Phone
- Robust GraphQL API - Restricted Query Depth, Breadth, and Frequency
- Rich Transitions - Material Motion System
- Lazy Loading - Load Contents on Demand
- Dark Mode - Orthodox Material Dark Theme
- Bulk GraphQL Operations - Less HTTP Requests
- Well-organized State - Synced Locally based on Mutations
- Server CLI Commands - Easy Management

## Live Demo

For a live demo, please visit https://tasked.char2s.dev/.

A list of mock usernames is available at https://tasked.char2s.dev/users.json. The password for all the mock users is `password`.

## Main Tech Stack

- Angular
- NestJS
- TypeScript
- RxJS
- MikroORM
- GraphQL

## Development

```sh
npm i
cp .env.template .env
npm run server:cli db:init
npm run server:cli db:seed
npm run dev
```

## Compodoc Documents

```sh
npm run doc:client:build
npm run doc:client:serve
```

```sh
npm run doc:server:build
npm run doc:server:serve
```

## Deployment

### Local Deployment

```sh
cp .env.template .env
docker compose up
```

### Azure App Service Deployment

See `/.azure`.

### PWA and HTTPS

PWA features require a HTTPS context.

It's never a good practice to configure SSL stuff at the app scope. When deploying apps to the cloud, HTTPS usually automatically enabled, but when deploying locally, you'll need a outer server to enable HTTPS for the inner server running within docker.