-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1 from dmytro-komlyk/development
Development
- Loading branch information
Showing
128 changed files
with
13,729 additions
and
5,989 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,39 +1,53 @@ | ||
# dependencies | ||
# Dependencies | ||
node_modules | ||
.pnp | ||
.pnp.js | ||
.yarn/install-state.gz | ||
|
||
# database | ||
data | ||
# Build Outputs | ||
.turbo | ||
.next | ||
dist | ||
|
||
# testing | ||
coverage | ||
# Uploads | ||
apps/server/public | ||
|
||
# next.js | ||
.next/ | ||
out/ | ||
# env | ||
.env | ||
.env.local | ||
.env.docker.local | ||
|
||
# production | ||
build | ||
dist | ||
# Database | ||
apps/database/data | ||
apps/database/seed | ||
|
||
# Nginx | ||
|
||
# misc | ||
.DS_Store | ||
*.pem | ||
|
||
# debug | ||
# IDEs and editors | ||
/.idea | ||
.project | ||
.classpath | ||
.c9/ | ||
*.launch | ||
.settings/ | ||
*.sublime-workspace | ||
|
||
# Logs | ||
logs | ||
*.log | ||
npm-debug.log* | ||
pnpm-debug.log* | ||
yarn-debug.log* | ||
yarn-error.log* | ||
lerna-debug.log* | ||
|
||
# local env files | ||
.env | ||
.env*.local | ||
|
||
# vercel | ||
.vercel | ||
# OS | ||
.DS_Store | ||
*.pem | ||
|
||
# typescript | ||
*.tsbuildinfo | ||
next-env.d.ts | ||
# IDE - VSCode | ||
.vscode/* | ||
!.vscode/settings.json | ||
!.vscode/tasks.json | ||
!.vscode/launch.json | ||
!.vscode/extensions.json |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
#!/usr/bin/env sh | ||
. "$(dirname -- "$0")/_/husky.sh" | ||
|
||
pnpm lint | ||
pnpm lint-staged |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,3 @@ | ||
auto-install-peers = true | ||
public-hoist-pattern[]=*@nextui-org/* | ||
public-hoist-pattern[]=*prisma* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
{ | ||
"singleQuote": true | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
# Next-Nest-js-CI-on-VPS-Boilerplate | ||
# Next-Nest-js-CI-on-VPS-Boilerplate |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
node_modules | ||
.next | ||
Dockerfile | ||
.env.local | ||
.env.docker.local |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
APP_PORT=3002 | ||
|
||
NEXT_PUBLIC_BASE_URL=http://localhost:3001 | ||
NEXT_PUBLIC_SERVER_URL=http://localhost:3000 | ||
NEXT_PUBLIC_SERVER_API_URL=http://localhost:3000/api | ||
NEXT_PUBLIC_SERVER_TRPC_URL=http://localhost:3000/api/trpc | ||
NEXTAUTH_SECRET= | ||
NEXTAUTH_URL=http://localhost:3001/api/auth | ||
NEXTAUTH_JWT_ACCESS_TOKEN_EXPIRATION='1d' | ||
|
||
# This was inserted by `prisma init`: | ||
# Environment variables declared in this file are automatically made available to Prisma. | ||
# See the documentation for more detail: https://pris.ly/d/prisma-schema#accessing-environment-variables-from-the-schema | ||
|
||
# Prisma supports the native connection string format for PostgreSQL, MySQL, SQLite, SQL Server, MongoDB and CockroachDB. | ||
# See the documentation for all the connection string options: https://pris.ly/d/connection-strings | ||
DATABASE_USERNAME= | ||
DATABASE_PASSWORD= | ||
DATABASE_HOST=mongo | ||
DATABASE_PORT=27017 | ||
DATABASE_NAME= | ||
DATABASE_URL="mongodb://${DATABASE_USERNAME}:${DATABASE_PASSWORD}@${DATABASE_HOST}:${DATABASE_PORT}/${DATABASE_NAME}?replicaSet=rs0&retryWrites=true&w=majority&directConnection=true&authSource=admin" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
APP_PORT=3002 | ||
APP_DOMAIN= | ||
SERVER_DOMAIN= | ||
|
||
NEXT_PUBLIC_BASE_URL="https://${APP_DOMAIN}" | ||
NEXT_PUBLIC_SERVER_URL="https://${SERVER_DOMAIN}" | ||
NEXT_PUBLIC_SERVER_API_URL="https://${SERVER_DOMAIN}/api" | ||
NEXT_PUBLIC_SERVER_TRPC_URL="https://${SERVER_DOMAIN}/api/trpc" | ||
NEXTAUTH_SECRET= | ||
NEXTAUTH_URL="https://${APP_DOMAIN}/api/auth" | ||
NEXTAUTH_JWT_ACCESS_TOKEN_EXPIRATION='1d' | ||
|
||
# This was inserted by `prisma init`: | ||
# Environment variables declared in this file are automatically made available to Prisma. | ||
# See the documentation for more detail: https://pris.ly/d/prisma-schema#accessing-environment-variables-from-the-schema | ||
|
||
# Prisma supports the native connection string format for PostgreSQL, MySQL, SQLite, SQL Server, MongoDB and CockroachDB. | ||
# See the documentation for all the connection string options: https://pris.ly/d/connection-strings | ||
DATABASE_USERNAME= | ||
DATABASE_PASSWORD= | ||
DATABASE_HOST=mongo | ||
DATABASE_PORT=27017 | ||
DATABASE_NAME= | ||
DATABASE_URL="mongodb://${DATABASE_USERNAME}:${DATABASE_PASSWORD}@${DATABASE_HOST}:${DATABASE_PORT}/${DATABASE_NAME}?replicaSet=rs0&retryWrites=true&w=majority&directConnection=true&authSource=admin" |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
APP_PORT=3002 | ||
|
||
NEXT_PUBLIC_BASE_URL=http://localhost:3002 | ||
NEXT_PUBLIC_SERVER_URL=http://localhost:3000 | ||
NEXT_PUBLIC_SERVER_API_URL=http://localhost:3000/api | ||
NEXT_PUBLIC_SERVER_TRPC_URL=http://localhost:3000/api/trpc | ||
|
||
#Auth | ||
NEXTAUTH_SECRET= | ||
NEXTAUTH_URL=http://localhost:3002/api/auth | ||
NEXTAUTH_JWT_ACCESS_TOKEN_EXPIRATION='1d' | ||
GOOGLE_CLIENT_ID= | ||
GOOGLE_CLIENT_SECRET= | ||
|
||
# This was inserted by `prisma init`: | ||
# Environment variables declared in this file are automatically made available to Prisma. | ||
# See the documentation for more detail: https://pris.ly/d/prisma-schema#accessing-environment-variables-from-the-schema | ||
|
||
# Prisma supports the native connection string format for PostgreSQL, MySQL, SQLite, SQL Server, MongoDB and CockroachDB. | ||
# See the documentation for all the connection string options: https://pris.ly/d/connection-strings | ||
DATABASE_USERNAME= | ||
DATABASE_PASSWORD= | ||
DATABASE_HOST=127.0.0.1 | ||
DATABASE_PORT=27017 | ||
DATABASE_NAME= | ||
DATABASE_URL="mongodb://${DATABASE_USERNAME}:${DATABASE_PASSWORD}@${DATABASE_HOST}:${DATABASE_PORT}/${DATABASE_NAME}?replicaSet=rs0&retryWrites=true&w=majority&directConnection=true&authSource=admin" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
module.exports = { | ||
root: true, | ||
extends: ['next', 'next/core-web-vitals', '@repo/eslint-config/next.js'], | ||
parser: '@typescript-eslint/parser', | ||
parserOptions: { | ||
ecmaVersion: 2021, | ||
sourceType: 'module', | ||
project: true, | ||
}, | ||
}; |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.