@ -1,4 +1,4 @@
|
||||
node_modules
|
||||
yarn.lock
|
||||
package-lock.json
|
||||
Dockerfile
|
||||
README.md
|
3
astro/.gitignore
vendored
3
astro/.gitignore
vendored
@ -9,8 +9,7 @@ node_modules/
|
||||
|
||||
# logs
|
||||
npm-debug.log*
|
||||
yarn-debug.log*
|
||||
yarn-error.log*
|
||||
|
||||
pnpm-debug.log*
|
||||
|
||||
|
||||
|
@ -1,20 +1,20 @@
|
||||
FROM node:lts-alpine as base
|
||||
WORKDIR /base
|
||||
COPY ./package.json ./package.json
|
||||
RUN yarn install
|
||||
RUN npm install
|
||||
COPY ./ ./
|
||||
|
||||
FROM base AS dev
|
||||
ENV NODE_ENV=development
|
||||
EXPOSE 3000
|
||||
CMD ["yarn","dev"]
|
||||
CMD ["npm", "run", "dev"]
|
||||
|
||||
FROM base AS build
|
||||
ENV NODE_ENV=production
|
||||
WORKDIR /build
|
||||
COPY --from=base /base ./
|
||||
ADD "https://random-uuid.deno.dev" skipcache
|
||||
RUN yarn build
|
||||
RUN npm run build
|
||||
|
||||
FROM nginx:stable AS prod
|
||||
COPY --from=build /build/dist /usr/share/nginx/html
|
||||
|
5817
astro/package-lock.json
generated
Normal file
5817
astro/package-lock.json
generated
Normal file
File diff suppressed because it is too large
Load Diff
@ -1,6 +1,7 @@
|
||||
/* tslint:disable */
|
||||
/* eslint-disable */
|
||||
/**
|
||||
* This file was automatically generated by Payload CMS.
|
||||
* This file was automatically generated by Payload.
|
||||
* DO NOT MODIFY IT BY HAND. Instead, modify your source Payload config,
|
||||
* and re-run `payload generate:types` to regenerate this file.
|
||||
*/
|
||||
@ -30,9 +31,11 @@ export interface User {
|
||||
name?: string;
|
||||
updatedAt: string;
|
||||
createdAt: string;
|
||||
email?: string;
|
||||
email: string;
|
||||
resetPasswordToken?: string;
|
||||
resetPasswordExpiration?: string;
|
||||
salt?: string;
|
||||
hash?: string;
|
||||
loginAttempts?: number;
|
||||
lockUntil?: string;
|
||||
password?: string;
|
||||
|
4078
astro/yarn.lock
4078
astro/yarn.lock
File diff suppressed because it is too large
Load Diff
Reference in New Issue
Block a user