Skip to content

Commit

Permalink
feat: add providers
Browse files Browse the repository at this point in the history
  • Loading branch information
risv1 committed Jan 6, 2025
1 parent ce0c78d commit e39136a
Show file tree
Hide file tree
Showing 11 changed files with 1,596 additions and 16 deletions.
5 changes: 4 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -105,4 +105,7 @@ app.*.map.json

# Simulators
android/
ios/
ios/

# Localstack
localstack_volume
9 changes: 0 additions & 9 deletions Makefile

This file was deleted.

12 changes: 10 additions & 2 deletions backend/.env.example
Original file line number Diff line number Diff line change
@@ -1,8 +1,16 @@
DB_URL="postgres://root:password@localhost:5432/postgres"
DB_URL="postgresql://root:password@localhost:5432/postgres"
AUTH_SERVICE_PORT=5000
ERP_SERVICE_PORT=5001
FILE_SERVICE_PORT=5002
NOTIFICATION_SERVICE_PORT=5003
REPORTING_SERVICE_PORT=5004
SHIFT_LOG_SERVICE_PORT=5005
SMP_SERVICE_PORT=5006
SMP_SERVICE_PORT=5006
REDIS_URL="redis://localhost:6379"
RABBITMQ_URL="amqp://localhost:5672"
AWS_ENDPOINT="http://localhost:4566"
AWS_REGION="us-east-1"
AWS_ACCESS_KEY_ID="test"
AWS_SECRET_ACCESS_KEY="test"
S3_BUCKET_NAME="jiva-bucket"
SNS_TOPIC_ARN="arn:aws:sns:us-east-1:000000000000:jiva-topic"
5 changes: 5 additions & 0 deletions backend/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,17 @@
"author": "",
"license": "ISC",
"dependencies": {
"@aws-sdk/client-s3": "^3.722.0",
"@aws-sdk/client-sns": "^3.721.0",
"amqplib": "^0.10.5",
"drizzle-kit": "^0.30.1",
"drizzle-orm": "^0.38.3",
"pg": "^8.13.1",
"redis": "^4.7.0",
"zod": "^3.24.1"
},
"devDependencies": {
"@types/amqplib": "^0.10.6",
"@types/node": "^22.10.5",
"@types/pg": "^8.11.10",
"prettier": "^3.4.2",
Expand Down
Loading

0 comments on commit e39136a

Please sign in to comment.