Skip to content

Commit

Permalink
Fix spacing issue in .env.example" -m "" -m "The .env.example file ha…
Browse files Browse the repository at this point in the history
…d a double space around the 'th =' assignment, which was inconsistent with the other environment variable assignments in the file. This commit removes the extra space to maintain consistency and improve readability. (#279)
  • Loading branch information
BadJacky authored Jun 17, 2024
1 parent 9d501bb commit 0190b54
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions .env.example
Original file line number Diff line number Diff line change
Expand Up @@ -16,15 +16,15 @@ REDIS_AUTH=
REDIS_PORT=6379
REDIS_DB=0

AMQP_HOST = 127.0.0.1
AMQP_PORT = 5672
AMQP_USER = guest
AMQP_PASSWORD = guest
AMQP_VHOST = /
AMQP_ENABLE = false
AMQP_HOST=127.0.0.1
AMQP_PORT=5672
AMQP_USER=guest
AMQP_PASSWORD=guest
AMQP_VHOST=/
AMQP_ENABLE=false

CONSOLE_SQL = true
JWT_SECRET = azOVxsOWt3r0ozZNz8Ss429ht0T8z6OpeIJAIwNp6X0xqrbEY2epfIWyxtC1qSNM8eD6/LQ/SahcQi2ByXa/2A==
JWT_API_SECRET = ISfQtGMNRtGopgzfxxS9A3d7kpBxknf74gVrFHnpPTzkzI2+80l+NmznOkOQLSpMt7Xw9YVvQUZlBaQVMDDMQQ==
CONSOLE_SQL=true
JWT_SECRET=azOVxsOWt3r0ozZNz8Ss429ht0T8z6OpeIJAIwNp6X0xqrbEY2epfIWyxtC1qSNM8eD6/LQ/SahcQi2ByXa/2A==
JWT_API_SECRET=ISfQtGMNRtGopgzfxxS9A3d7kpBxknf74gVrFHnpPTzkzI2+80l+NmznOkOQLSpMt7Xw9YVvQUZlBaQVMDDMQQ==

SUPER_ADMIN = 1
SUPER_ADMIN=1

0 comments on commit 0190b54

Please sign in to comment.