diff --git a/.env.example b/.env.example
index 255dd99cdf0cc2d64110c3ceffcc851cc27b1dee..d7d28540de266ec9504e7a11be240fafd116965e 100644
--- a/.env.example
+++ b/.env.example
@@ -32,7 +32,7 @@ ELASTICSEARCH_USER=elastic
 ELASTICSEARCH_PASSWORD=ChangeThis
 ELASTICSEARCH_HOST=localhost
 ELASTICSEARCH_PORT=9200
-ELASTICSEARCH_URL=http://${ELASTICSEARCH_USER}:${ELASTICSEARCH_PASSWORD}@${ELASTICSEARCH_HOST}:${ELASTICSEARCH_PORT}
+ELASTICSEARCH_URL=https://${ELASTICSEARCH_USER}:${ELASTICSEARCH_PASSWORD}@${ELASTICSEARCH_HOST}:${ELASTICSEARCH_PORT}
 
 # ES Index config 
 # Index can be anything, as long as it identifies who is indexing
diff --git a/package.json b/package.json
index 2cd1559215768cbf6c8d6f3664f09971050d9854..0ea01d68095bc65ef90caa35733c53f4dd98dd0c 100644
--- a/package.json
+++ b/package.json
@@ -1,7 +1,7 @@
 {
   "name": "hono-backend",
   "scripts": {
-    "dev": "bun run --hot --watch src/index.ts --port=4000",
+    "dev": "bun run --port '4000' --hot --watch src/index.ts",
     "db:generate": "drizzle-kit generate",
     "db:migrate": "cross-env DB_MIGRATING=true bun run src/db/migrate.ts",
     "db:seed": "cross-env DB_SEEDING=true bun run src/db/seed.ts",