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

Next.js Migration #70

Merged
merged 7 commits into from
Nov 28, 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
45 changes: 0 additions & 45 deletions .github/workflows/build_check.yml

This file was deleted.

73 changes: 0 additions & 73 deletions .github/workflows/client_adr_push.yml

This file was deleted.

2 changes: 1 addition & 1 deletion .github/workflows/lint_format.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
- name: Checkout the Repo
uses: actions/checkout@v3

- name: Prettiier
- name: Prettier
uses: creyD/[email protected]
with:
prettier_options: "--check {**/*,*}.{js,jsx,json,html,css,yml,yaml}"
Expand Down
55 changes: 0 additions & 55 deletions .github/workflows/server_adr_push.yml

This file was deleted.

48 changes: 43 additions & 5 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,6 +1,44 @@
node_modules/
credentials/token.js
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.

# dependencies
client/node_modules
server/node_modules
/node_modules
/.pnp
.pnp.js

# testing
/coverage

# next.js
/.next/
client/.next
/out/

# production
/build

# misc
.DS_Store
*.pem

# debug
npm-debug.log*
yarn-debug.log*
yarn-error.log*

# local env files
.env*.local

# vercel
.vercel

# typescript
*.tsbuildinfo
next-env.d.ts

# Server Token
server/credentials/token.js
package-lock.json
client/src/credentials/token.js
client/.env
.env

/.idea/
20 changes: 0 additions & 20 deletions Dockerfile

This file was deleted.

Loading