-
Notifications
You must be signed in to change notification settings - Fork 666
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Change startup commands for bun and deno #6531
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
pm2
is not installed in containers.
You will need to add
{{#deps}}
RUN apk add {{{.}}}
{{/deps}}
{{#bootstrap}}
RUN {{{.}}}
{{/bootstrap}}
after WORKDIR
in deno.Dockerfile
and bun install
prior to CMD
in bun.Dockerfile
Change it to
Done.
Done. |
Still some errors. Any solution? |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Sorry, missing some configuration options
deps:
- npm
bootstrap:
- npm --location=global install pm2
for bun
and deno
Head branch was pushed to by a user without write access
This error: curl --retry 5 --retry-delay 5 --retry-max-time 180 --retry-connrefused http://`cat javascript/elysia/ip-bun.txt`:3000 -v
* Closing connection -1 It seems that the ip address is not acquired. |
Still not OK. The same issue. |
Good for |
Accroding to the |
What's wrong with |
I don't know. Any request is failing Stack is 1 |
2 | const c0=app.static['/']['GET'],c1=app.static['/user']['POST'],f=app.router.find.bind(app.router);return function(r){const s=url.indexOf('/',12) + 1;r.query=r.url.indexOf('?',s);const p=r.query===-1?r.url.substring(s):r.url.substring(s,r.query);switch(p){case'':if(r.method==='GET')return c0(r);break;case'user':if(r.method==='POST')return c1(r);break;}const o=f(r.method,p);if(o===null)return;r.params=o;return o._(r);}
^
ReferenceError: Can't find variable: url cc @aquapi |
Shall we fix the failure of |
We can try either in this PR or in another, However, since I cannot publish the results this monday, we can wait a little bit to handle a fix. |
OK. I'm going to fix |
The case of |
Could you merge master please ? @jim-king-2000 |
Head branch was pushed to by a user without write access
Done. |
I'm looking forward to the result. |
Will be done next monday |
Could be a little bit earlier? |
I can understand the impatience, but no reasons to rush I prefer to keep the same publishing day (except that I can not this one) |
Sure. Take your time. By the way, I'm just destroyed by this book. |
No new result? @waghanza |
Something went wrong on my end. Will publish results next week (and ping you) |
I hope that it was not my D PRs) looking forward results next week :) thanks @waghanza |
Just a kind reminder, "next week" is coming. |
don't worry, it's planned :-) |
See elysiajs/elysia#64.