Skip to content

Commit 105a9d9

Browse files
committed
prototype: Add audit crate
1 parent 4648c0f commit 105a9d9

File tree

20 files changed

+3517
-93
lines changed

20 files changed

+3517
-93
lines changed

.env.example

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
# Audit service configuration
2+
TIPS_AUDIT_KAFKA_BROKERS=localhost:9092
3+
TIPS_AUDIT_KAFKA_TOPIC=tips-audit
4+
TIPS_AUDIT_KAFKA_GROUP_ID=local-audit
5+
TIPS_AUDIT_LOG_LEVEL=info
6+
TIPS_AUDIT_S3_BUCKET=tips
7+
TIPS_AUDIT_S3_CONFIG_TYPE=manual
8+
TIPS_AUDIT_S3_ENDPOINT=http://localhost:7000
9+
TIPS_AUDIT_S3_REGION=us-east-1
10+
TIPS_AUDIT_S3_ACCESS_KEY_ID=minioadmin
11+
TIPS_AUDIT_S3_SECRET_ACCESS_KEY=minioadmin

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
# Rust
22
/target/
33

4+
# Local Dev
5+
/data/
6+
47
# IDE & OS
58
.idea/
69
.vscode/

0 commit comments

Comments
 (0)