Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/allitov/task-tracker
API for task tracker services.
https://github.com/allitov/task-tracker
docker java maven mongodb spring-boot spring-security spring-webflux springdoc-openapi-ui
Last synced: 1 day ago
JSON representation
API for task tracker services.
- Host: GitHub
- URL: https://github.com/allitov/task-tracker
- Owner: allitov
- Created: 2024-02-02T07:18:16.000Z (11 months ago)
- Default Branch: master
- Last Pushed: 2024-03-26T07:30:54.000Z (9 months ago)
- Last Synced: 2024-03-26T08:33:05.948Z (9 months ago)
- Topics: docker, java, maven, mongodb, spring-boot, spring-security, spring-webflux, springdoc-openapi-ui
- Language: Java
- Homepage:
- Size: 119 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Task Tracker
**API for task tracker services.**The application provides opportunity to create tasks and add users to them.
## Running locally
### Clone the repository and move to the working directory
```shell
git clone https://github.com/allitov/task-tracker.git
cd task-tracker
```### Run the application
```shell
docker-compose --file ./docker/docker-compose.yaml up -d
```#### Stop the application
```shell
docker-compose --project-name="task-tracker" down
```### Run application environment only
```shell
docker-compose --file ./docker/docker-compose-env.yaml up -d
```#### Stop application environment
```shell
docker-compose --project-name="task-tracker-env" down
```## Documentation
To familiarize yourself with the application's API and see example queries,
you can refer to the [interactive Swagger documentation](http://localhost:8080/webjars/swagger-ui/index.html)
(available only after launching the application).