Rodrigo Menezes
Rodrigo Menezes
Just pipe it into gunicorn! My wsgi.py: ```python import logging from . import create_app app = create_app() if __name__ == "__main__": # https://trstringer.com/logging-flask-gunicorn-the-manageable-way/ gunicorn_logger = logging.getLogger('gunicorn.error') app.logger.handlers = gunicorn_logger.handlers app.logger.setLevel(gunicorn_logger.level)...
Sorry my dude! Been really busy the past few days. Yes, I can make a unit test for it. Honestly there are two todos: 1. Store maxAge as originalMaxAge so...
This test ensures that we save maxAge as session.cookie.originalMaxAge, like express-session: ```typescript test('stores maxAge as originalMaxAge, just like express-session', async (t) => { t.plan(2) const fastify = await buildFastify((request, reply)...
> On one hand I am kind of exhausted by the work on this plugin. So basically I read the unit tests, and dont understand them anymore. And on the...
Also -- thank you @uzlopak for all your work so far!
If anyone is here because of Alpine, you may need Docker 20. We use AWS Codebuild for CD for example, and they only support 19: rodrigo/seed-3500-download-docker-20-in-codebuild
I'm getting some similar errors. If I do something like this: ```typescript export const getAdminUserFromEmail = async (db: AdminDatabase, email: string) => { return db.query.adminUsers.findFirst({ where: eq(adminUsers.email, email) }); };...
I tried that, too. No dice.
I can do that and it gives me a value back.
No - it'd just give me a blank widget as if there was nothing there.