kretes
kretes copied to clipboard
Unable to display the FIRST page at port 5544 .
- It looks everything is running good ...
➜ myWebsite kretes start
Kretes 1.0.0-alpha.61
Database OK
Snowpack OK
TypeScript OK
warn - You have enabled the JIT engine which is currently in preview.
warn - Preview features are not covered by semver, may introduce breaking changes, and can change at any time.
CSS OK
Started on http://localhost:5544
----- Logs
listen EADDRINUSE: address already in use :::5544
➜ myWebsite
Even if I added the following db section in config/default.json
as:
"db": {
"database": "mydb",
"user": "postgres",
"password": "postgres",
"host": "localhost",
"port": 5555
}
I still got the following ERROR messages:
➜ myWebsite kretes start
Kretes 1.0.0-alpha.61
Database Error: connect ECONNREFUSED 127.0.0.1:5555
-> (no explanation available)
Snowpack OK
TypeScript OK
warn - You have enabled the JIT engine which is currently in preview.
warn - Preview features are not covered by semver, may introduce breaking changes, and can change at any time.
CSS OK
Started on http://localhost:5544
----- Logs
listen EADDRINUSE: address already in use :::5544
➜ myWebsite
It looks even if I specify a port 5555, Kretes
still tries to start on port 5544.
- But the website still looks like:
Any suggestions please?