Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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.
- Host: GitHub
- URL: https://github.com/char2sgu/tasked
- Owner: Char2sGu
- License: apache-2.0
- Created: 2021-03-23T15:38:36.000Z (almost 4 years ago)
- Default Branch: develop
- Last Pushed: 2024-07-08T17:27:59.000Z (6 months ago)
- Last Synced: 2024-07-08T21:59:38.346Z (6 months ago)
- Topics: angular, app, dependency-injection, material-design, mikro-orm, nestjs, pwa, rxjs, typescript
- Language: TypeScript
- Homepage: https://tasked.char2s.dev/
- Size: 4.46 MB
- Stars: 3
- Watchers: 2
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
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.