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

chore(pnpm): bump typescript from 5.7.2 to 5.7.3 #9

Closed
wants to merge 6 commits into from
Closed
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
4 changes: 2 additions & 2 deletions .env.development
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
DATABASE_URL=postgresql://shokuyou:shokuyou@localhost/shokuyou
SECRET=muvM!odv5$Kx&%mWNhfhMa5yZF^h@jutf#B9b!F7LLMFZtQ4VPRVrJNUNYE*nxe8
DATABASE_URL=mongodb://shokuyou:shokuyou@localhost:27017/
SECRET=muvM!odv5$Kx&%mWNhfhMa5yZF^h@jutf#B9b!F7LLMFZtQ4VPRVrJNUNYE*nxe8
22 changes: 22 additions & 0 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: Push to Heroku

on:
push:
branches:
- main

env:
HEROKU_API_KEY: ${{ secrets.HEROKU_API_KEY }}
HEROKU_APP_NAME: ${{ secrets.HEROKU_APP_NAME }}

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Login to Heroku Container registry
run: heroku container:login
- name: Build and push
run: heroku container:push -a $HEROKU_APP_NAME web
- name: Release
run: heroku container:release -a $HEROKU_APP_NAME web
11 changes: 4 additions & 7 deletions db.compose.yaml
Original file line number Diff line number Diff line change
@@ -1,13 +1,10 @@
services:
db:
container_name: db
image: postgres
image: mongo
restart: unless-stopped
shm_size: 128mb
environment:
TZ: UTC
POSTGRES_PASSWORD: shokuyou
POSTGRES_USER: shokuyou
POSTGRES_DB: shokuyou
MONGO_INITDB_ROOT_USERNAME: shokuyou
MONGO_INITDB_ROOT_PASSWORD: shokuyou
ports:
- 5432:5432
- 27017:27017
9 changes: 4 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,24 +28,23 @@
"@nestjs/core": "^10.0.0",
"@nestjs/devtools-integration": "^0.1.6",
"@nestjs/jwt": "^10.2.0",
"@nestjs/mongoose": "^11.0.0",
"@nestjs/passport": "^10.0.3",
"@nestjs/platform-express": "^10.0.0",
"@nestjs/swagger": "^8.1.0",
"@nestjs/typeorm": "^10.0.2",
"adm-zip": "0.5.13",
"bcrypt": "^5.1.1",
"cheerio": "^1.0.0",
"class-transformer": "^0.5.1",
"class-validator": "^0.14.1",
"cloudinary": "^2.5.1",
"helmet": "^8.0.0",
"mongoose": "^8.9.5",
"passport": "^0.7.0",
"passport-jwt": "^4.0.1",
"passport-local": "^1.0.0",
"pg": "^8.13.1",
"reflect-metadata": "^0.2.2",
"rxjs": "^7.8.1",
"typeorm": "^0.3.20"
"rxjs": "^7.8.1"
},
"devDependencies": {
"@darraghor/eslint-plugin-nestjs-typed": "^5.0.30",
Expand Down Expand Up @@ -75,7 +74,7 @@
"ts-loader": "^9.4.3",
"ts-node": "^10.9.1",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.1.3"
"typescript": "^5.7.3"
},
"jest": {
"moduleFileExtensions": [
Expand Down
Loading
Loading