https://github.com/mr-mrf-dev/angry-task
๐ข Simple and Modern Angular to-do app.
https://github.com/mr-mrf-dev/angry-task
angular angular-cli angular-v18 primeng primeng-v18 tailwindcss todoapp todolist ts
Last synced: 2 days ago
JSON representation
๐ข Simple and Modern Angular to-do app.
- Host: GitHub
- URL: https://github.com/mr-mrf-dev/angry-task
- Owner: Mr-MRF-Dev
- License: mit
- Created: 2024-09-11T16:41:06.000Z (over 1 year ago)
- Default Branch: master
- Last Pushed: 2024-10-17T18:09:34.000Z (over 1 year ago)
- Last Synced: 2024-10-19T12:05:47.468Z (over 1 year ago)
- Topics: angular, angular-cli, angular-v18, primeng, primeng-v18, tailwindcss, todoapp, todolist, ts
- Language: TypeScript
- Homepage: https://mr-mrf-dev.github.io/Angry-Task/
- Size: 571 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# ๐ข AngryTask
[](https://github.com/Mr-MRF-Dev/Angry-Task/releases)

[](https://github.com/Mr-MRF-Dev/Angry-Task/actions/workflows/deploy.yml)
[](https://github.com/Mr-MRF-Dev/Angry-Task/actions/workflows/latest-build.yml)
[](https://codecov.io/github/Mr-MRF-Dev/Angry-Task)
[](https://github.com/Mr-MRF-Dev/Angry-Task/deployments)
[](https://hub.docker.com/r/mrmrfdev/angry-task)
[](https://hub.docker.com/r/mrmrfdev/angry-task)
[](https://angular.io/)
[](https://github.com/angular/angular-cli)
[](https://primeng.org/)
[](/LICENSE)

AngryTask is a simple task manager that allows you to create, edit, and delete tasks. It is built using Angular and PrimeNG. This project was created to help me learn Angular and PrimeNG. The project is hosted on GitHub Pages and can be accessed at the [live demo](https://mr-mrf-dev.github.io/Angry-Task/).
## ๐ Demo
Check out the [live demo](https://mr-mrf-dev.github.io/Angry-Task/)!
## ๐ฆ Angry Task Image
You can find the Angry Task Docker image on [Docker Hub](https://hub.docker.com/r/mrmrfdev/angry-task) and [GitHub Container Registry (GHCR)](https://github.com/Mr-MRF-Dev/Angry-Task/pkgs/container/angry-task)
**From Docker Hub:**
```bash
docker pull mrmrfdev/angry-task:latest
docker run -p 4200:80 mrmrfdev/angry-task:latest
```
**From GitHub Container Registry (GHCR):**
```bash
docker pull ghcr.io/mr-mrf-dev/angry-task:latest
docker run -p 4200:80 ghcr.io/mr-mrf-dev/angry-task:latest
```
## ๐ณ Using Docker
You can also run AngryTask using Docker, which provides a consistent environment across different systems.
### Prerequisites
Make sure you have [Docker](https://www.docker.com/) installed on your system.
Then open your browser and navigate to [http://localhost:4200](http://localhost:4200)
### Building from Source
1. Clone the repository (if you haven't already):
```bash
git clone https://github.com/Mr-MRF-Dev/Angry-Task.git
cd Angry-Task
```
2. Build the Docker image:
```bash
docker build -t angry-task .
```
3. Run the container:
```bash
docker run -p 4200:80 angry-task
```
4. Open your browser and navigate to [http://localhost:4200](http://localhost:4200)
### Using Docker Compose
For easier management, you can use Docker Compose:
1. Clone the repository (if you haven't already):
```bash
git clone https://github.com/Mr-MRF-Dev/Angry-Task.git
cd Angry-Task
```
2. Run with Docker Compose:
```bash
docker compose up
```
Or run in detached mode (background):
```bash
docker compose up -d
```
3. Open your browser and navigate to [http://localhost:4200](http://localhost:4200)
4. To stop the container:
```bash
docker compose down
```
## ๐ฅ Getting Started
1. Clone the repository
If you have [Git](https://git-scm.com/) installed:
```bash
git clone https://github.com/Mr-MRF-Dev/Angry-Task.git
```
If you have [GitHub CLI](https://cli.github.com/) installed:
```bash
gh repo clone Mr-MRF-Dev/Angry-Task
```
Navigate to the Project Directory
```bash
cd Angry-Task
```
2. Install the dependencies
```bash
npm install
```
### โ Using NPM Scripts
You can use npm scripts to **build**, **test**, and **serve** the application. For more information, refer to the `scripts` section in the `package.json` file.
for example:
```bash
npm run start # Serve the application
```
```bash
npm run build # Build the application
```
```bash
npm run test # Run the unit tests
```
and so on...
### ๐ Using Angular CLI
[Angular CLI](https://angular.dev/tools/cli) is a powerful tool that can be used to serve, test, and build your application. To use the Angular CLI, you need to have it installed globally. If it's not already installed, you can install it with the following command:
```bash
npm install -g @angular/cli
```
and then you can use the `ng` command to serve the application. Here are some examples:
#### ๐ฝ Serve the Application
To start a development server, run:
```bash
ng serve
```
Then, navigate to [http://localhost:4200/](http://localhost:4200/). The application will automatically reload if you change any of the source files.
Alternatively, you can run:
```bash
ng serve --open
```
This will open the application in your default browser.
#### ๐งช Running Unit Tests
To run the unit tests using [Karma](https://karma-runner.github.io), execute the following command:
```bash
ng test
```
#### ๐ฆ Building the Application
To build the application, use the following command:
```bash
ng build
```
The build artifacts will be stored in the `dist/` directory. This directory will contain all the files necessary for deployment.
#### ๐ Linting the Application
To lint the application, run:
```bash
ng lint
```
This will lint the application using [ESLint](https://eslint.org/) and [Codelyzer](https://codelyzer.com/).
## ๐ค Contributing
We welcome any contributions you may have. If you're interested in helping out, please fork the repository and create an [Issue](https://github.com/Mr-MRF-Dev/Angry-Task/issues) or [Pull Request](https://github.com/Mr-MRF-Dev/Angry-Task/pulls). We'll be happy to review your contributions.
## ๐ License
This project is licensed under the MIT License. For more information, please refer to the [LICENSE](/LICENSE) file.