Skip to content
Snippets Groups Projects
Commit 3d5fb199 authored by Richard Fernando Heise Ferreira's avatar Richard Fernando Heise Ferreira
Browse files

HOTFIX: package.json port & .env https

parent 4b868fc8
No related branches found
No related tags found
No related merge requests found
......@@ -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
......
{
"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",
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment