From 7e39925bcbca20228943915e517919395d3bb9a6 Mon Sep 17 00:00:00 2001 From: Harkamal Randhawa Date: Wed, 18 Mar 2026 19:40:43 -0600 Subject: [PATCH] Share IDE project settings --- android/.gitignore | 13 ++++++++- android/.idea/.gitignore | 3 ++ android/.idea/.name | 1 + android/.idea/AndroidProjectSystem.xml | 6 ++++ android/.idea/compiler.xml | 6 ++++ android/.idea/gradle.xml | 17 +++++++++++ android/.idea/misc.xml | 10 +++++++ android/.idea/runConfigurations.xml | 17 +++++++++++ android/.idea/vcs.xml | 6 ++++ backend/.idea/.gitignore | 10 +++++++ backend/.idea/compiler.xml | 19 ++++++++++++ backend/.idea/encodings.xml | 6 ++++ backend/.idea/jarRepositories.xml | 20 +++++++++++++ backend/.idea/misc.xml | 14 +++++++++ .../Pet_Shop_Application.xml | 29 +++++++++++++++++++ .../runConfigurations/Reset_Database.xml | 29 +++++++++++++++++++ desktop/.idea/encodings.xml | 7 +++++ desktop/.idea/misc.xml | 12 ++++++++ desktop/.idea/runConfigurations/Run_App.xml | 9 ++++++ 19 files changed, 233 insertions(+), 1 deletion(-) create mode 100644 android/.idea/.gitignore create mode 100644 android/.idea/.name create mode 100644 android/.idea/AndroidProjectSystem.xml create mode 100644 android/.idea/compiler.xml create mode 100644 android/.idea/gradle.xml create mode 100644 android/.idea/misc.xml create mode 100644 android/.idea/runConfigurations.xml create mode 100644 android/.idea/vcs.xml create mode 100644 backend/.idea/.gitignore create mode 100644 backend/.idea/compiler.xml create mode 100644 backend/.idea/encodings.xml create mode 100644 backend/.idea/jarRepositories.xml create mode 100644 backend/.idea/misc.xml create mode 100644 backend/.idea/runConfigurations/Pet_Shop_Application.xml create mode 100644 backend/.idea/runConfigurations/Reset_Database.xml create mode 100644 desktop/.idea/encodings.xml create mode 100644 desktop/.idea/misc.xml create mode 100644 desktop/.idea/runConfigurations/Run_App.xml diff --git a/android/.gitignore b/android/.gitignore index faf530b2..9855261b 100644 --- a/android/.gitignore +++ b/android/.gitignore @@ -1,7 +1,18 @@ *.iml .gradle /local.properties -/.idea/ +/.idea/* +!/.idea/.gitignore +!/.idea/.name +!/.idea/AndroidProjectSystem.xml +!/.idea/compiler.xml +!/.idea/gradle.xml +!/.idea/misc.xml +!/.idea/runConfigurations.xml +!/.idea/vcs.xml +/.idea/caches/ +/.idea/deploymentTargetSelector.xml +/.idea/workspace.xml .DS_Store /build /captures diff --git a/android/.idea/.gitignore b/android/.idea/.gitignore new file mode 100644 index 00000000..26d33521 --- /dev/null +++ b/android/.idea/.gitignore @@ -0,0 +1,3 @@ +# Default ignored files +/shelf/ +/workspace.xml diff --git a/android/.idea/.name b/android/.idea/.name new file mode 100644 index 00000000..9c57c59a --- /dev/null +++ b/android/.idea/.name @@ -0,0 +1 @@ +PetStoreMobile \ No newline at end of file diff --git a/android/.idea/AndroidProjectSystem.xml b/android/.idea/AndroidProjectSystem.xml new file mode 100644 index 00000000..4a53bee8 --- /dev/null +++ b/android/.idea/AndroidProjectSystem.xml @@ -0,0 +1,6 @@ + + + + + \ No newline at end of file diff --git a/android/.idea/compiler.xml b/android/.idea/compiler.xml new file mode 100644 index 00000000..b86273d9 --- /dev/null +++ b/android/.idea/compiler.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/android/.idea/gradle.xml b/android/.idea/gradle.xml new file mode 100644 index 00000000..cdbc250c --- /dev/null +++ b/android/.idea/gradle.xml @@ -0,0 +1,17 @@ + + + + + + \ No newline at end of file diff --git a/android/.idea/misc.xml b/android/.idea/misc.xml new file mode 100644 index 00000000..74dd639e --- /dev/null +++ b/android/.idea/misc.xml @@ -0,0 +1,10 @@ + + + + + + + + + \ No newline at end of file diff --git a/android/.idea/runConfigurations.xml b/android/.idea/runConfigurations.xml new file mode 100644 index 00000000..16660f1d --- /dev/null +++ b/android/.idea/runConfigurations.xml @@ -0,0 +1,17 @@ + + + + + + \ No newline at end of file diff --git a/android/.idea/vcs.xml b/android/.idea/vcs.xml new file mode 100644 index 00000000..6c0b8635 --- /dev/null +++ b/android/.idea/vcs.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/backend/.idea/.gitignore b/backend/.idea/.gitignore new file mode 100644 index 00000000..ab1f4164 --- /dev/null +++ b/backend/.idea/.gitignore @@ -0,0 +1,10 @@ +# Default ignored files +/shelf/ +/workspace.xml +# Ignored default folder with query files +/queries/ +# Datasource local storage ignored files +/dataSources/ +/dataSources.local.xml +# Editor-based HTTP Client requests +/httpRequests/ diff --git a/backend/.idea/compiler.xml b/backend/.idea/compiler.xml new file mode 100644 index 00000000..66bc19f3 --- /dev/null +++ b/backend/.idea/compiler.xml @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/backend/.idea/encodings.xml b/backend/.idea/encodings.xml new file mode 100644 index 00000000..63e90019 --- /dev/null +++ b/backend/.idea/encodings.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/backend/.idea/jarRepositories.xml b/backend/.idea/jarRepositories.xml new file mode 100644 index 00000000..712ab9d9 --- /dev/null +++ b/backend/.idea/jarRepositories.xml @@ -0,0 +1,20 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/backend/.idea/misc.xml b/backend/.idea/misc.xml new file mode 100644 index 00000000..0c04b523 --- /dev/null +++ b/backend/.idea/misc.xml @@ -0,0 +1,14 @@ + + + + + + + + + + \ No newline at end of file diff --git a/backend/.idea/runConfigurations/Pet_Shop_Application.xml b/backend/.idea/runConfigurations/Pet_Shop_Application.xml new file mode 100644 index 00000000..a0527f15 --- /dev/null +++ b/backend/.idea/runConfigurations/Pet_Shop_Application.xml @@ -0,0 +1,29 @@ + + + + + + + + diff --git a/backend/.idea/runConfigurations/Reset_Database.xml b/backend/.idea/runConfigurations/Reset_Database.xml new file mode 100644 index 00000000..359fd28c --- /dev/null +++ b/backend/.idea/runConfigurations/Reset_Database.xml @@ -0,0 +1,29 @@ + + + + + + + + diff --git a/desktop/.idea/encodings.xml b/desktop/.idea/encodings.xml new file mode 100644 index 00000000..aa00ffab --- /dev/null +++ b/desktop/.idea/encodings.xml @@ -0,0 +1,7 @@ + + + + + + + \ No newline at end of file diff --git a/desktop/.idea/misc.xml b/desktop/.idea/misc.xml new file mode 100644 index 00000000..50bd5c92 --- /dev/null +++ b/desktop/.idea/misc.xml @@ -0,0 +1,12 @@ + + + + + + + + \ No newline at end of file diff --git a/desktop/.idea/runConfigurations/Run_App.xml b/desktop/.idea/runConfigurations/Run_App.xml new file mode 100644 index 00000000..bcf1b96e --- /dev/null +++ b/desktop/.idea/runConfigurations/Run_App.xml @@ -0,0 +1,9 @@ + + + + \ No newline at end of file