-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* bring in line with nextjs version * add idea to gitignore * fix up compose for live deploy * fix up compose for live deploy * post stg deploy compose fixes * remove old workflows * remove old workflows
- Loading branch information
Showing
69 changed files
with
4,603 additions
and
30,381 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
|
@@ -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}" | ||
|
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 |
---|---|---|
@@ -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/ |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.