Skip to content

Commit

Permalink
pipeline setup changes
Browse files Browse the repository at this point in the history
  • Loading branch information
riddhesh-mahajan committed Oct 30, 2023
1 parent f0893a2 commit ab7f73d
Show file tree
Hide file tree
Showing 36 changed files with 23 additions and 30 deletions.
4 changes: 0 additions & 4 deletions apps/admin/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,6 @@
# testing
/coverage

# next.js
/.next/
/out/

# production
/build

Expand Down
1 change: 1 addition & 0 deletions apps/admin/.next/cache/.tsbuildinfo

Large diffs are not rendered by default.

Binary file not shown.
Binary file not shown.
Binary file not shown.
4 changes: 2 additions & 2 deletions apps/admin/hooks/useLocalStorage.ts
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
"use client";

const processStoredValue = (storedValue) => {
const processStoredValue = (storedValue: any) => {
try {
return JSON.parse(storedValue);
} catch (err) {
return storedValue;
}
};

const parseStoredValue = (storedValue) => {
const parseStoredValue = (storedValue: any) => {
try {
return JSON.parse(storedValue);
} catch (err) {
Expand Down
4 changes: 2 additions & 2 deletions apps/admin/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev -p 3001",
"dev": "next dev -p 3011",
"build": "next build",
"start": "next start -p 3001",
"start": "next start -p 3011",
"lint": "next lint"
},
"dependencies": {
Expand Down
4 changes: 0 additions & 4 deletions apps/backend/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,6 @@
# testing
/coverage

# next.js
/.next/
/out/

# production
/build

Expand Down
Binary file not shown.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
self.__SSG_MANIFEST=new Set,self.__SSG_MANIFEST_CB&&self.__SSG_MANIFEST_CB();
4 changes: 0 additions & 4 deletions apps/code_executor/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,6 @@
# testing
/coverage

# next.js
/.next/
/out/

# production
/build

Expand Down
Binary file not shown.
1 change: 1 addition & 0 deletions apps/code_executor/.next/next-minimal-server.js.nft.json

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions apps/code_executor/.next/next-server.js.nft.json

Large diffs are not rendered by default.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
self.__SSG_MANIFEST=new Set([]);self.__SSG_MANIFEST_CB&&self.__SSG_MANIFEST_CB()
4 changes: 0 additions & 4 deletions apps/landing/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,6 @@
# testing
/coverage

# next.js
/.next/
/out/

# production
/build

Expand Down
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
1 change: 1 addition & 0 deletions apps/landing/.next/next-minimal-server.js.nft.json

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions apps/landing/.next/next-server.js.nft.json

Large diffs are not rendered by default.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
self.__SSG_MANIFEST=new Set([]);self.__SSG_MANIFEST_CB&&self.__SSG_MANIFEST_CB()
4 changes: 2 additions & 2 deletions apps/landing/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev -p 3002",
"dev": "next dev -p 3012",
"build": "next build",
"start": "next start -p 3002",
"start": "next start -p 3012",
"lint": "next lint"
},
"dependencies": {
Expand Down
4 changes: 0 additions & 4 deletions apps/web/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,6 @@
# testing
/coverage

# next.js
/.next/
/out/

# production
/build

Expand Down
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
self.__SSG_MANIFEST=new Set,self.__SSG_MANIFEST_CB&&self.__SSG_MANIFEST_CB();
4 changes: 2 additions & 2 deletions apps/web/hooks/useLocalStorage.ts
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
"use client";

const processStoredValue = (storedValue) => {
const processStoredValue = (storedValue: any) => {
try {
return JSON.parse(storedValue);
} catch (err) {
return storedValue;
}
};

const parseStoredValue = (storedValue) => {
const parseStoredValue = (storedValue: any) => {
try {
return JSON.parse(storedValue);
} catch (err) {
Expand Down
4 changes: 2 additions & 2 deletions apps/web/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@
"version": "1.0.0",
"private": true,
"scripts": {
"dev": "next dev -p 3000",
"dev": "next dev -p 3010",
"build": "next build",
"start": "next start -p 3000",
"start": "next start -p 3010",
"lint": "next lint"
},
"dependencies": {
Expand Down

0 comments on commit ab7f73d

Please sign in to comment.