Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/dmytrodemianchuk/crud-audit-log
Application that event logging for CRUD APP
https://github.com/dmytrodemianchuk/crud-audit-log
audit-log docker go mongodb
Last synced: 1 day ago
JSON representation
Application that event logging for CRUD APP
- Host: GitHub
- URL: https://github.com/dmytrodemianchuk/crud-audit-log
- Owner: DmytroDemianchuk
- Created: 2023-06-30T21:08:26.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2023-07-02T10:41:44.000Z (over 1 year ago)
- Last Synced: 2024-06-21T03:32:56.335Z (5 months ago)
- Topics: audit-log, docker, go, mongodb
- Language: Go
- Homepage:
- Size: 8.79 MB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Service event logging for CRUD APP
Build and run
```
source .env && go build -o app cmd/main.go && ./app
```For mongo can use Docker
```
docker run --rm -d --name audit-log-mongo \
-e MONGO_INITDB_ROOT_USERNAME=admin \
-e MONGO_INITDB_ROOT_PASSWORD=g0langn1nja \
-p 27017:27017 mongo:latest
```