From dff2bfefbaf74d381cdea91ba3bab63ccd3faa55 Mon Sep 17 00:00:00 2001 From: Vadym Samoilenko Date: Sun, 24 Nov 2024 14:55:17 +0000 Subject: [PATCH] initial commit --- .idea/.gitignore | 8 ++++++++ .idea/inspectionProfiles/profiles_settings.xml | 6 ++++++ .idea/misc.xml | 7 +++++++ .idea/modules.xml | 8 ++++++++ .idea/study-python-fastapi.iml | 8 ++++++++ .idea/vcs.xml | 6 ++++++ hello_world.py | 1 + 7 files changed, 44 insertions(+) create mode 100644 .idea/.gitignore create mode 100644 .idea/inspectionProfiles/profiles_settings.xml create mode 100644 .idea/misc.xml create mode 100644 .idea/modules.xml create mode 100644 .idea/study-python-fastapi.iml create mode 100644 .idea/vcs.xml create mode 100644 hello_world.py diff --git a/.idea/.gitignore b/.idea/.gitignore new file mode 100644 index 0000000..13566b8 --- /dev/null +++ b/.idea/.gitignore @@ -0,0 +1,8 @@ +# Default ignored files +/shelf/ +/workspace.xml +# Editor-based HTTP Client requests +/httpRequests/ +# Datasource local storage ignored files +/dataSources/ +/dataSources.local.xml diff --git a/.idea/inspectionProfiles/profiles_settings.xml b/.idea/inspectionProfiles/profiles_settings.xml new file mode 100644 index 0000000..105ce2d --- /dev/null +++ b/.idea/inspectionProfiles/profiles_settings.xml @@ -0,0 +1,6 @@ + + + + \ No newline at end of file diff --git a/.idea/misc.xml b/.idea/misc.xml new file mode 100644 index 0000000..1d3ce46 --- /dev/null +++ b/.idea/misc.xml @@ -0,0 +1,7 @@ + + + + + + \ No newline at end of file diff --git a/.idea/modules.xml b/.idea/modules.xml new file mode 100644 index 0000000..baf6c72 --- /dev/null +++ b/.idea/modules.xml @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/.idea/study-python-fastapi.iml b/.idea/study-python-fastapi.iml new file mode 100644 index 0000000..d0876a7 --- /dev/null +++ b/.idea/study-python-fastapi.iml @@ -0,0 +1,8 @@ + + + + + + + + \ 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/hello_world.py b/hello_world.py new file mode 100644 index 0000000..1dc45ac --- /dev/null +++ b/hello_world.py @@ -0,0 +1 @@ +print("Hello World!") \ No newline at end of file