Skip to content

Commit

Permalink
Update sdkdocs-template submodule and .gitignore
Browse files Browse the repository at this point in the history
-container_settings.json is used by the Docker plugin https://blog.jetbrains.com/idea/2015/03/docker-support-in-intellij-idea-14-1/
-project wide .iml configuration for easy code-sample setup
  • Loading branch information
breandan committed Dec 5, 2015
1 parent 75ac21b commit 9a200d0
Show file tree
Hide file tree
Showing 4 changed files with 44 additions and 11 deletions.
31 changes: 21 additions & 10 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -16,18 +16,29 @@ _includes
# if you remove the above rule, at least ignore the following:

# User-specific stuff:
.idea/workspace.xml
.idea/tasks.xml
.idea/dictionaries
.idea/libraries/Gradle__*.xml
.idea/workspace.xml
.idea/tasks.xml
.idea/dictionaries
.idea/libraries/Gradle__*.xml

# Sensitive or high-churn files:
.idea/dataSources.ids
.idea/dataSources.xml
.idea/sqlDataSources.xml
.idea/dynamic.xml
.idea/uiDesigner.xml
.idea/dataSources.ids
.idea/dataSources.xml
.idea/sqlDataSources.xml
.idea/dynamic.xml
.idea/uiDesigner.xml

## File-based project format:
*.ipr
*.iws
*.iws

### Gradle template
.gradle
build/

# Ignore Gradle GUI config
gradle-app.setting

# Avoid ignoring Gradle wrapper jar file (.jar files are usually ignored)
!gradle-wrapper.jar

8 changes: 8 additions & 0 deletions container_settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
{
"_comment": "FOR DETAILED FORMAT LOOK AT https://docs.docker.com/reference/api/docker_remote_api_v1.16/#create-a-container",
"AttachStdin": true,
"OpenStdin": true,
"HostConfig": {
"PortBindings":{ "8080/tcp": [{ "HostIp": "0.0.0.0", "HostPort": "18080" }] }
}
}
14 changes: 14 additions & 0 deletions intellij-sdk-docs.iml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
<?xml version="1.0" encoding="UTF-8"?>
<module external.linked.project.id="intellij-sdk-docs" external.linked.project.path="$MODULE_DIR$" external.root.project.path="$MODULE_DIR$" external.system.id="GRADLE" external.system.module.group="" external.system.module.version="unspecified" relativePaths="true" type="JAVA_MODULE" version="4">
<component name="NewModuleRootManager" inherit-compiler-output="false">
<output url="file://$MODULE_DIR$/build" />
<output-test url="file://$MODULE_DIR$/build" />
<exclude-output />
<content url="file://$MODULE_DIR$">
<excludeFolder url="file://$MODULE_DIR$/.gradle" />
<excludeFolder url="file://$MODULE_DIR$/build" />
</content>
<orderEntry type="inheritedJdk" />
<orderEntry type="sourceFolder" forTests="false" />
</component>
</module>
2 changes: 1 addition & 1 deletion sdkdocs-template

0 comments on commit 9a200d0

Please sign in to comment.