feat(auth): Base auth with plugins
- Add fastify to protect routes plugins (requireAuth: true) - Simple Demo to show regular password auth (no 2FA/OTP nor remote auth) - Currently supports: login, logout, signin - OTP workflow should work, not tested - Fixed convention for docker volumes (now all placed in /volumes/<name>)
This commit is contained in:
parent
ddde700494
commit
964fe908a6
17 changed files with 398 additions and 197 deletions
|
|
@ -36,7 +36,6 @@ ARG EXTRA_FILES=empty
|
|||
COPY --from=builder /dist /src
|
||||
RUN pnpm install --prod --frozen-lockfile;
|
||||
COPY ${EXTRA_FILES} /extra
|
||||
RUN echo "${EXTRA_FILES}";
|
||||
ENTRYPOINT [ "/src/entrypoint.sh" ]
|
||||
|
||||
CMD ["node", "/src/run.cjs"]
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue