https://github.com/juliocesarscheidt/students-courses-project
https://github.com/juliocesarscheidt/students-courses-project
api clean-architecture docker dynamodb github-actions openapi typescript unit-test
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/juliocesarscheidt/students-courses-project
- Owner: juliocesarscheidt
- License: mit
- Created: 2023-10-02T04:32:44.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2024-02-12T22:47:58.000Z (over 2 years ago)
- Last Synced: 2025-01-24T10:09:00.535Z (over 1 year ago)
- Topics: api, clean-architecture, docker, dynamodb, github-actions, openapi, typescript, unit-test
- Language: TypeScript
- Homepage:
- Size: 170 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
# Typescript Project using Clean Architecture
Tiny project to implement clean architecture concepts using Typescript.
It's related to courses and students, with the persistence being done on DynamoDB.
## Running with Docker
```bash
# with docker-compose
docker-compose up -d --build
docker-compose logs -f --tail 100 students-courses-project
# with docker
docker image build --tag juliocesarmidia/students-courses-project:1.0.0 .
docker container run -d -p 4040:4040 \
--name students-courses-project \
--restart always \
juliocesarmidia/students-courses-project:1.0.0
docker container logs -f --tail 100 students-courses-project
```