Skip to content

Commit

Permalink
Merge pull request #19 from Open-Webtoon-Reader/improvement/image-saving
Browse files Browse the repository at this point in the history
Merge image saving to Main
  • Loading branch information
Xen0Xys authored May 15, 2024
2 parents e53847a + 6ab94b6 commit 5cab5d7
Show file tree
Hide file tree
Showing 15 changed files with 673 additions and 445 deletions.
12 changes: 12 additions & 0 deletions .env.example
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
# Server
SERVER_TYPE="http"
BIND_ADDRESS="0.0.0.0"
HTTP_PORT="3000"
HTTPS_PORT="3001"

# SSL
SSL_KEY_FILE=""
SSL_CERT_FILE=""

# API
PREFIX="api/v1/"
25 changes: 0 additions & 25 deletions .env.vault

This file was deleted.

16 changes: 6 additions & 10 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,17 +1,19 @@
# Created by https://www.toptal.com/developers/gitignore/api/webstorm+all,node,database
# Edit at https://www.toptal.com/developers/gitignore?templates=webstorm+all,node,database
# Created by https://www.toptal.com/developers/gitignore/api/dotenv,webstorm+all,node,database
# Edit at https://www.toptal.com/developers/gitignore?templates=dotenv,webstorm+all,node,database

### Database ###
*.accdb
*.db
*.db-journal
*.dbf
*.mdb
*.pdb
*.sqlite3
*.db-shm
*.db-wal

### dotenv ###
.env

### Node ###
# Logs
logs
Expand Down Expand Up @@ -88,7 +90,6 @@ web_modules/
.yarn-integrity

# dotenv environment variable files
.env
.env.development.local
.env.test.local
.env.production.local
Expand Down Expand Up @@ -240,11 +241,6 @@ fabric.properties
!.idea/codeStyles
!.idea/runConfigurations

# End of https://www.toptal.com/developers/gitignore/api/webstorm+all,node,database

.env*
.flaskenv*
!.env.project
!.env.vault
# End of https://www.toptal.com/developers/gitignore/api/dotenv,webstorm+all,node,database

images/
13 changes: 8 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
"test:e2e": "jest --config ./test/jest-e2e.json"
},
"dependencies": {
"@fastify/static": "^7.0.3",
"@fastify/static": "^7.0.4",
"@nestjs/common": "^10.3.8",
"@nestjs/config": "^3.2.2",
"@nestjs/core": "^10.3.8",
Expand All @@ -30,10 +30,10 @@
"class-transformer": "^0.5.1",
"class-validator": "^0.14.1",
"dotenv": "^16.4.5",
"fastify": "^4.26.2",
"fastify": "^4.27.0",
"jsdom": "^24.0.0",
"jszip": "^3.10.1",
"prisma": "^5.13.0",
"prisma": "^5.14.0",
"reflect-metadata": "^0.2.2",
"rxjs": "^7.8.1",
"sharp": "^0.33.3",
Expand All @@ -45,9 +45,9 @@
"@nestjs/testing": "^10.3.8",
"@types/jest": "^29.5.12",
"@types/jsdom": "^21.1.6",
"@types/node": "^20.12.10",
"@types/node": "^20.12.12",
"@types/supertest": "^6.0.2",
"@typescript-eslint/eslint-plugin": "^7.0.0",
"@typescript-eslint/eslint-plugin": "^7.9.0",
"@typescript-eslint/parser": "^6.21.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
Expand Down Expand Up @@ -77,5 +77,8 @@
],
"coverageDirectory": "../coverage",
"testEnvironment": "node"
},
"prisma": {
"seed": "ts-node prisma/seed.ts"
}
}
Loading

0 comments on commit 5cab5d7

Please sign in to comment.