Skip to content
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

💄 add response card layout #165

Merged
merged 4 commits into from
Aug 19, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -92,6 +92,7 @@ jobs:
uploadArtifacts: true # save results as an action artifacts
temporaryPublicStorage: true # upload lighthouse report to the temporary storage


# test:
# runs-on: ${{ matrix.os }}

Expand Down
3 changes: 3 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
{
"cSpell.words": [
"ahooks",
"aliyuncs",
"autoincrement",
"autorestart",
Expand All @@ -8,12 +9,14 @@
"customfav",
"Dysmsapi",
"EDITMSG",
"fieldname",
"gitmoji",
"hotkeyjs",
"ianvs",
"ilike",
"leostar",
"mtsx",
"nprogress",
"ofetch",
"pico",
"picocolors",
Expand Down
3 changes: 3 additions & 0 deletions apps/server/netlify.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
[build]
command = "turbo build"
functions = "functions"
3 changes: 3 additions & 0 deletions apps/server/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,10 @@
"test:cov": "vitest --coverage"
},
"dependencies": {
"@fastify/multipart": "^8.3.0",
"@fastify/static": "7.0.4",
"@fastify/view": "9.1.0",
"@nest-lab/fastify-multer": "^1.2.0",
"@nestjs-modules/ioredis": "2.0.2",
"@nestjs-modules/mailer": "2.0.2",
"@nestjs/axios": "3.0.2",
Expand All @@ -31,6 +33,7 @@
"@nestjs/schedule": "4.1.0",
"@nestjs/swagger": "7.4.0",
"@nestjs/websockets": "10.3.10",
"@netlify/functions": "^2.8.1",
"@poster-craft/schema": "1.0.0",
"ali-oss": "6.20.0",
"argon2": "0.40.3",
Expand Down
3 changes: 2 additions & 1 deletion apps/server/src/main.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { NestFactory } from '@nestjs/core';
import { DocumentBuilder, SwaggerModule } from '@nestjs/swagger';

import multipart from '@fastify/multipart';
import { AppModule } from './modules/app/app.module';
import { appGlobalMiddleware } from './middlewares/global.middleware.ts';
import { GlobalConfig } from './config';
Expand Down Expand Up @@ -29,6 +29,7 @@ async function bootstrap() {
},
templates: join(__dirname, 'views'),
});
await app.register(multipart);

appGlobalMiddleware(app);
const config = new DocumentBuilder()
Expand Down
Loading