Commit 9e820cae authored by George Papathanail's avatar George Papathanail
Browse files

app controller and federation services changes

parent 72186148
Loading
Loading
Loading
Loading

.idea/.gitignore

0 → 100644
+10 −0
Original line number Diff line number Diff line
# 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/
+6 −0
Original line number Diff line number Diff line
<component name="InspectionProjectProfileManager">
  <settings>
    <option name="USE_PROJECT_PROFILE" value="false" />
    <version value="1.0" />
  </settings>
</component>
 No newline at end of file

.idea/misc.xml

0 → 100644
+7 −0
Original line number Diff line number Diff line
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
  <component name="Black">
    <option name="sdkName" value="Python 3.9 (open-exposure-gateway)" />
  </component>
  <component name="ProjectRootManager" version="2" project-jdk-name="Python 3.9 (open-exposure-gateway)" project-jdk-type="Python SDK" />
</project>
 No newline at end of file

.idea/modules.xml

0 → 100644
+8 −0
Original line number Diff line number Diff line
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
  <component name="ProjectModuleManager">
    <modules>
      <module fileurl="file://$PROJECT_DIR$/.idea/open-exposure-gateway.iml" filepath="$PROJECT_DIR$/.idea/open-exposure-gateway.iml" />
    </modules>
  </component>
</project>
 No newline at end of file
+17 −0
Original line number Diff line number Diff line
<?xml version="1.0" encoding="UTF-8"?>
<module type="PYTHON_MODULE" version="4">
  <component name="NewModuleRootManager">
    <content url="file://$MODULE_DIR$">
      <excludeFolder url="file://$MODULE_DIR$/.venv" />
    </content>
    <orderEntry type="jdk" jdkName="Python 3.9 (open-exposure-gateway)" jdkType="Python SDK" />
    <orderEntry type="sourceFolder" forTests="false" />
  </component>
  <component name="PyDocumentationSettings">
    <option name="format" value="PLAIN" />
    <option name="myDocStringFormat" value="Plain" />
  </component>
  <component name="TestRunnerService">
    <option name="PROJECT_TEST_RUNNER" value="py.test" />
  </component>
</module>
 No newline at end of file
Loading