-
Notifications
You must be signed in to change notification settings - Fork 57
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
Remove terminal icon from Workbench page #458
Changes from 3 commits
6af358f
bdcf33f
66ed18a
186f0ed
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -45,23 +45,23 @@ repos: | |
# stages: [pre-push] | ||
|
||
- repo: https://github.com/pre-commit/mirrors-prettier | ||
rev: v3.1.0 | ||
rev: v4.0.0-alpha.8 | ||
hooks: | ||
- id: prettier | ||
args: ["--ignore-path", "../.gitignore", "--write"] | ||
files: '^(client|servers/execution/runner|servers/lib)/.*\.(ts|tsx|css|scss)$' | ||
stages: [pre-commit] | ||
|
||
- repo: https://github.com/pre-commit/mirrors-eslint | ||
rev: v8.54.0 | ||
rev: v9.0.0-alpha.1 | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. please select a stage version if it is available |
||
hooks: | ||
- id: eslint | ||
args: ["--fix"] | ||
files: "^(client|servers/execution/runner|servers/lib)/.*" | ||
stages: [pre-commit] | ||
|
||
- repo: https://github.com/igorshubovych/markdownlint-cli | ||
rev: v0.37.0 | ||
rev: v0.38.0 | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. something like this |
||
hooks: | ||
- id: markdownlint | ||
files: '.*\.md$' | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,7 +5,7 @@ if (typeof window !== 'undefined') { | |
REACT_APP_URL_BASENAME: 'dtaas', | ||
REACT_APP_URL_DTLINK: '/lab', | ||
REACT_APP_URL_LIBLINK: '', | ||
REACT_APP_WORKBENCHLINK_TERMINAL: '/terminals/main', | ||
// REACT_APP_WORKBENCHLINK_TERMINAL: '/terminals/main', | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. you can remove this line in all the config files |
||
REACT_APP_WORKBENCHLINK_VNCDESKTOP: '/tools/vnc/?password=vncpassword', | ||
REACT_APP_WORKBENCHLINK_VSCODE: '/tools/vscode/', | ||
REACT_APP_WORKBENCHLINK_JUPYTERLAB: '/lab', | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
INFO Accepting connections at http://localhost:4000 | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. please do not add this file |
||
[32m[Nest] 9173 - [39m01/17/2024, 10:26:20 PM [32m LOG[39m [38;5;3m[NestFactory] [39m[32mStarting Nest application...[39m | ||
[32m[Nest] 9173 - [39m01/17/2024, 10:26:20 PM [32m LOG[39m [38;5;3m[InstanceLoader] [39m[32mAppModule dependencies initialized[39m[38;5;3m +12ms[39m | ||
[32m[Nest] 9173 - [39m01/17/2024, 10:26:20 PM [32m LOG[39m [38;5;3m[InstanceLoader] [39m[32mConfigHostModule dependencies initialized[39m[38;5;3m +4ms[39m | ||
[32m[Nest] 9173 - [39m01/17/2024, 10:26:20 PM [32m LOG[39m [38;5;3m[InstanceLoader] [39m[32mConfigModule dependencies initialized[39m[38;5;3m +1ms[39m | ||
[32m[Nest] 9173 - [39m01/17/2024, 10:26:20 PM [32m LOG[39m [38;5;3m[InstanceLoader] [39m[32mGraphQLSchemaBuilderModule dependencies initialized[39m[38;5;3m +1ms[39m | ||
[32m[Nest] 9173 - [39m01/17/2024, 10:26:20 PM [32m LOG[39m [38;5;3m[InstanceLoader] [39m[32mFilesModule dependencies initialized[39m[38;5;3m +45ms[39m | ||
[32m[Nest] 9173 - [39m01/17/2024, 10:26:20 PM [32m LOG[39m [38;5;3m[InstanceLoader] [39m[32mGraphQLModule dependencies initialized[39m[38;5;3m +1ms[39m | ||
[32m[Nest] 9173 - [39m01/17/2024, 10:26:20 PM [32m LOG[39m [38;5;3m[GraphQLModule] [39m[32mMapped {/lib, POST} route[39m[38;5;3m +53ms[39m | ||
[32m[Nest] 9173 - [39m01/17/2024, 10:26:20 PM [32m LOG[39m [38;5;3m[NestApplication] [39m[32mNest application successfully started[39m[38;5;3m +2ms[39m |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
import * as React from 'react'; | ||
import TerminalOutlinedIcon from '@mui/icons-material/TerminalOutlined'; | ||
// import TerminalOutlinedIcon from '@mui/icons-material/TerminalOutlined'; | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. please remove the commented lines |
||
import DesktopWindowsOutlinedIcon from '@mui/icons-material/DesktopWindowsOutlined'; | ||
import CodeOutlinedIcon from '@mui/icons-material/CodeOutlined'; | ||
import ScienceOutlinedIcon from '@mui/icons-material/ScienceOutlined'; | ||
|
@@ -11,10 +11,10 @@ type LinkIconsType = { | |
}; | ||
|
||
const LinkIcons: LinkIconsType = { | ||
TERMINAL: { | ||
icon: <TerminalOutlinedIcon />, | ||
name: 'Terminal', | ||
}, | ||
// TERMINAL: { | ||
// icon: <TerminalOutlinedIcon />, | ||
// name: 'Terminal', | ||
// }, | ||
VNCDESKTOP: { | ||
icon: <DesktopWindowsOutlinedIcon />, | ||
name: 'Desktop', | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,58 @@ | ||
# ------------------------------------------------------ | ||
# THIS FILE WAS AUTOMATICALLY GENERATED (DO NOT MODIFY) | ||
# ------------------------------------------------------ | ||
|
||
type Blob { | ||
name: String! | ||
type: String! | ||
} | ||
|
||
type BlobEdge { | ||
node: Blob! | ||
} | ||
|
||
type BlobConnection { | ||
edges: [BlobEdge!]! | ||
} | ||
|
||
type TreeEntry { | ||
name: String! | ||
type: String! | ||
} | ||
|
||
type TreeEdge { | ||
node: TreeEntry! | ||
} | ||
|
||
type TreeConnection { | ||
edges: [TreeEdge!]! | ||
} | ||
|
||
type Tree { | ||
blobs: BlobConnection! | ||
trees: TreeConnection! | ||
} | ||
|
||
type RepositoryBlob { | ||
name: String! | ||
rawBlob: String! | ||
rawTextBlob: String! | ||
} | ||
|
||
type RepositoryBlobConnection { | ||
nodes: [RepositoryBlob!]! | ||
} | ||
|
||
type Repository { | ||
tree: Tree! | ||
blobs: RepositoryBlobConnection! | ||
} | ||
|
||
type Project { | ||
repository: Repository! | ||
} | ||
|
||
type Query { | ||
listDirectory(path: String!): Project! | ||
readFile(path: String!): Project! | ||
} |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,7 @@ | ||
PORT='4001' | ||
MODE='local' | ||
LOCAL_PATH ='filepath' | ||
LOG_LEVEL='debug' | ||
APOLLO_PATH='/lib' or '' | ||
GRAPHQL_PLAYGROUND='false' or 'true' | ||
MODE='local' | ||
LOCAL_PATH ='/mnt/d/Aryan/Coding/Web Dev/DTaaS/DTaaS/DTaaS/files' | ||
LOG_LEVEL='debug' | ||
APOLLO_PATH='lib' | ||
GRAPHQL_PLAYGROUND='true' | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
please select a stage version if it is available.