From 04b52f9b7bf8f63f2d5ac21bac75bf34afc966ea Mon Sep 17 00:00:00 2001 From: sidarth-23 Date: Fri, 19 Apr 2024 16:42:48 +0530 Subject: [PATCH] =?UTF-8?q?=E2=9C=A8=20Setup=20:=20Added=20jetbrains=20set?= =?UTF-8?q?up=20and=20start=20command=20in=20turbo.json?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Added the config files which webstorm installs like vscode does. - Added start command in turbo.json to run built nextjs project --- .idea/.gitignore | 5 +++++ .idea/codeStyles/codeStyleConfig.xml | 5 +++++ .idea/compiler.xml | 6 ++++++ .idea/inspectionProfiles/Project_Default.xml | 6 ++++++ .idea/jsLibraryMappings.xml | 6 ++++++ .idea/kalvi.iml | 12 ++++++++++++ .idea/modules.xml | 8 ++++++++ .idea/prettier.xml | 6 ++++++ .idea/vcs.xml | 6 ++++++ turbo.json | 4 ++++ 10 files changed, 64 insertions(+) create mode 100644 .idea/.gitignore create mode 100644 .idea/codeStyles/codeStyleConfig.xml create mode 100644 .idea/compiler.xml create mode 100644 .idea/inspectionProfiles/Project_Default.xml create mode 100644 .idea/jsLibraryMappings.xml create mode 100644 .idea/kalvi.iml create mode 100644 .idea/modules.xml create mode 100644 .idea/prettier.xml create mode 100644 .idea/vcs.xml diff --git a/.idea/.gitignore b/.idea/.gitignore new file mode 100644 index 0000000..b58b603 --- /dev/null +++ b/.idea/.gitignore @@ -0,0 +1,5 @@ +# Default ignored files +/shelf/ +/workspace.xml +# Editor-based HTTP Client requests +/httpRequests/ diff --git a/.idea/codeStyles/codeStyleConfig.xml b/.idea/codeStyles/codeStyleConfig.xml new file mode 100644 index 0000000..a55e7a1 --- /dev/null +++ b/.idea/codeStyles/codeStyleConfig.xml @@ -0,0 +1,5 @@ + + + + \ No newline at end of file diff --git a/.idea/compiler.xml b/.idea/compiler.xml new file mode 100644 index 0000000..7ab3a0a --- /dev/null +++ b/.idea/compiler.xml @@ -0,0 +1,6 @@ + + + + + \ No newline at end of file diff --git a/.idea/inspectionProfiles/Project_Default.xml b/.idea/inspectionProfiles/Project_Default.xml new file mode 100644 index 0000000..03d9549 --- /dev/null +++ b/.idea/inspectionProfiles/Project_Default.xml @@ -0,0 +1,6 @@ + + + + \ No newline at end of file diff --git a/.idea/jsLibraryMappings.xml b/.idea/jsLibraryMappings.xml new file mode 100644 index 0000000..d23208f --- /dev/null +++ b/.idea/jsLibraryMappings.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/.idea/kalvi.iml b/.idea/kalvi.iml new file mode 100644 index 0000000..24643cc --- /dev/null +++ b/.idea/kalvi.iml @@ -0,0 +1,12 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/.idea/modules.xml b/.idea/modules.xml new file mode 100644 index 0000000..443244a --- /dev/null +++ b/.idea/modules.xml @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/.idea/prettier.xml b/.idea/prettier.xml new file mode 100644 index 0000000..b0c1c68 --- /dev/null +++ b/.idea/prettier.xml @@ -0,0 +1,6 @@ + + + + + \ No newline at end of file diff --git a/.idea/vcs.xml b/.idea/vcs.xml new file mode 100644 index 0000000..35eb1dd --- /dev/null +++ b/.idea/vcs.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/turbo.json b/turbo.json index 781f274..0681411 100644 --- a/turbo.json +++ b/turbo.json @@ -12,6 +12,10 @@ "dev": { "cache": false, "persistent": true + }, + "start": { + "cache": true, + "persistent": true } } }