Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/clintonbrito/crud-angular-spring
CRUD app from an Angular + Java with Spring course. Practical exercise covering front-end in Angular and back-end logic with Java and Spring.
https://github.com/clintonbrito/crud-angular-spring
angular java spring typescript
Last synced: about 2 months ago
JSON representation
CRUD app from an Angular + Java with Spring course. Practical exercise covering front-end in Angular and back-end logic with Java and Spring.
- Host: GitHub
- URL: https://github.com/clintonbrito/crud-angular-spring
- Owner: clintonbrito
- Created: 2024-01-12T01:33:40.000Z (almost 1 year ago)
- Default Branch: main
- Last Pushed: 2024-03-28T00:49:38.000Z (10 months ago)
- Last Synced: 2024-03-28T23:25:54.359Z (10 months ago)
- Topics: angular, java, spring, typescript
- Language: TypeScript
- Homepage:
- Size: 348 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# CRUD Angular + Spring
This web application is a CRUD developed from [Loiane](https://github.com/loiane) Angular + Spring online course. It allows users to record courses, delete them, update course details, and retrieve a comprehensive list of all courses.
## ๐งช Technologies
This project was developed using:
![Java](https://img.shields.io/badge/java-%23ED8B00.svg?style=for-the-badge&logo=openjdk&logoColor=white)
![Spring](https://img.shields.io/badge/spring-%236DB33F.svg?style=for-the-badge&logo=spring&logoColor=white)
![Angular](https://img.shields.io/badge/angular-%23DD0031.svg?style=for-the-badge&logo=angular&logoColor=white)
![TypeScript](https://img.shields.io/badge/typescript-%23007ACC.svg?style=for-the-badge&logo=typescript&logoColor=white)
![MySQL](https://img.shields.io/badge/MySQL-005C84?style=for-the-badge&logo=mysql&logoColor=white)
![Docker](https://img.shields.io/badge/docker-%230db7ed.svg?style=for-the-badge&logo=docker&logoColor=white)
## ๐ Getting started locally
Clone this repository to your local machine and access the cloned directory:
git clone [email protected]:clintonbrito/crud-angular-spring.git
cd crud-angular-spring[WORK IN PROGRESS] Run this command to create all the project's Docker containers and install the dependencies:
docker compose up -d
[WORK IN PROGRESS] If you need to stop and remove the project's Docker containers, you can use the following command:
docker compose down
Check the front-end docker logs using the command `docker logs -f app_frontend` which address is running the application and open your browser and access the application through the address below to view the interface locally, for example:
http://localhost:4200/
## ๐จ Development Patterns
### Commit Patterns
[![Conventional Commits](https://img.shields.io/badge/Conventional%20Commits-1.0.0-%23FE5196?logo=conventionalcommits&logoColor=white)](https://conventionalcommits.org)
This project adopts [Gitmoji](https://github.com/carloscuesta/gitmoji) and the commit convention known as [Conventional Commits](https://www.conventionalcommits.org/). This means that we follow a standardized format for our commit messages, making it easier to generate changelogs and adopt semantic versioning.
Example commit messages format:
feat: add login functionality
fix: resolve issue with user registration
wip: connecting back-end to front-end
## ๐ License
This project is licensed under the MIT License. See the LICENSE file for details.