diff options
| author | Gus Power <gus@infinitesidequests.com> | 2025-05-11 15:16:58 +0100 |
|---|---|---|
| committer | Gus Power <gus@infinitesidequests.com> | 2025-05-11 15:16:58 +0100 |
| commit | e1f43bb48b23338ce103dc92a53a13e72021299d (patch) | |
| tree | 132b138b0d1e5b003dd8343ca9462180ab86576f /.idea | |
first pass at ip service w/ happy path test and basic configuration
Diffstat (limited to '.idea')
| -rw-r--r-- | .idea/.gitignore | 8 | ||||
| -rw-r--r-- | .idea/modules.xml | 8 | ||||
| -rw-r--r-- | .idea/multiwan-dyndns.iml | 11 | ||||
| -rw-r--r-- | .idea/vcs.xml | 7 |
4 files changed, 34 insertions, 0 deletions
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/modules.xml b/.idea/modules.xml new file mode 100644 index 0000000..0b46490 --- /dev/null +++ b/.idea/modules.xml @@ -0,0 +1,8 @@ +<?xml version="1.0" encoding="UTF-8"?> +<project version="4"> + <component name="ProjectModuleManager"> + <modules> + <module fileurl="file://$PROJECT_DIR$/.idea/multiwan-dyndns.iml" filepath="$PROJECT_DIR$/.idea/multiwan-dyndns.iml" /> + </modules> + </component> +</project>
\ No newline at end of file diff --git a/.idea/multiwan-dyndns.iml b/.idea/multiwan-dyndns.iml new file mode 100644 index 0000000..cf84ae4 --- /dev/null +++ b/.idea/multiwan-dyndns.iml @@ -0,0 +1,11 @@ +<?xml version="1.0" encoding="UTF-8"?> +<module type="EMPTY_MODULE" version="4"> + <component name="NewModuleRootManager"> + <content url="file://$MODULE_DIR$"> + <sourceFolder url="file://$MODULE_DIR$/src" isTestSource="false" /> + <excludeFolder url="file://$MODULE_DIR$/target" /> + </content> + <orderEntry type="inheritedJdk" /> + <orderEntry type="sourceFolder" forTests="false" /> + </component> +</module>
\ No newline at end of file diff --git a/.idea/vcs.xml b/.idea/vcs.xml new file mode 100644 index 0000000..8306744 --- /dev/null +++ b/.idea/vcs.xml @@ -0,0 +1,7 @@ +<?xml version="1.0" encoding="UTF-8"?> +<project version="4"> + <component name="VcsDirectoryMappings"> + <mapping directory="" vcs="Git" /> + <mapping directory="$PROJECT_DIR$" vcs="Git" /> + </component> +</project>
\ No newline at end of file |
