Skip to content

Commit db1c5ca

Browse files
author
Juan Rios
committed
init commit
1 parent 51b6bfb commit db1c5ca

File tree

3 files changed

+143
-0
lines changed

3 files changed

+143
-0
lines changed

.gitignore

+126
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,126 @@
1+
2+
# Created by https://www.gitignore.io/api/go,git,intellij
3+
# Edit at https://www.gitignore.io/?templates=go,git,intellij
4+
5+
### Git ###
6+
# Created by git for backups. To disable backups in Git:
7+
# $ git config --global mergetool.keepBackup false
8+
*.orig
9+
10+
# Created by git when using merge tools for conflicts
11+
*.BACKUP.*
12+
*.BASE.*
13+
*.LOCAL.*
14+
*.REMOTE.*
15+
*_BACKUP_*.txt
16+
*_BASE_*.txt
17+
*_LOCAL_*.txt
18+
*_REMOTE_*.txt
19+
20+
### Go ###
21+
# Binaries for programs and plugins
22+
*.exe
23+
*.exe~
24+
*.dll
25+
*.so
26+
*.dylib
27+
28+
# Test binary, built with `go test -c`
29+
*.test
30+
31+
# Output of the go coverage tool, specifically when used with LiteIDE
32+
*.out
33+
34+
# Dependency directories (remove the comment below to include it)
35+
# vendor/
36+
37+
### Go Patch ###
38+
/vendor/
39+
/Godeps/
40+
41+
### Intellij ###
42+
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and WebStorm
43+
# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
44+
45+
# User-specific stuff
46+
.idea/**/workspace.xml
47+
.idea/**/tasks.xml
48+
.idea/**/usage.statistics.xml
49+
.idea/**/dictionaries
50+
.idea/**/shelf
51+
52+
# Generated files
53+
.idea/**/contentModel.xml
54+
55+
# Sensitive or high-churn files
56+
.idea/**/dataSources/
57+
.idea/**/dataSources.ids
58+
.idea/**/dataSources.local.xml
59+
.idea/**/sqlDataSources.xml
60+
.idea/**/dynamic.xml
61+
.idea/**/uiDesigner.xml
62+
.idea/**/dbnavigator.xml
63+
64+
# Gradle
65+
.idea/**/gradle.xml
66+
.idea/**/libraries
67+
68+
# Gradle and Maven with auto-import
69+
# When using Gradle or Maven with auto-import, you should exclude module files,
70+
# since they will be recreated, and may cause churn. Uncomment if using
71+
# auto-import.
72+
# .idea/modules.xml
73+
# .idea/*.iml
74+
# .idea/modules
75+
# *.iml
76+
# *.ipr
77+
78+
# CMake
79+
cmake-build-*/
80+
81+
# Mongo Explorer plugin
82+
.idea/**/mongoSettings.xml
83+
84+
# File-based project format
85+
*.iws
86+
87+
# IntelliJ
88+
out/
89+
90+
# mpeltonen/sbt-idea plugin
91+
.idea_modules/
92+
93+
# JIRA plugin
94+
atlassian-ide-plugin.xml
95+
96+
# Cursive Clojure plugin
97+
.idea/replstate.xml
98+
99+
# Crashlytics plugin (for Android Studio and IntelliJ)
100+
com_crashlytics_export_strings.xml
101+
crashlytics.properties
102+
crashlytics-build.properties
103+
fabric.properties
104+
105+
# Editor-based Rest Client
106+
.idea/httpRequests
107+
108+
# Android studio 3.1+ serialized cache file
109+
.idea/caches/build_file_checksums.ser
110+
111+
### Intellij Patch ###
112+
# Comment Reason: https://github.com/joeblau/gitignore.io/issues/186#issuecomment-215987721
113+
114+
# *.iml
115+
# modules.xml
116+
# .idea/misc.xml
117+
# *.ipr
118+
119+
# Sonarlint plugin
120+
.idea/sonarlint
121+
122+
# End of https://www.gitignore.io/api/go,git,intellij
123+
*.xml
124+
*.iml
125+
*.xml___jb_tmp___
126+
conf.json

.travis.yml

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
language: go
2+
go:
3+
- "1.12.x"
4+
5+
install: true
6+
7+
env:
8+
- GO111MODULE=on

main.go

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
package main
2+
3+
import (
4+
"fmt"
5+
)
6+
7+
func main() {
8+
fmt.Println("Hello World")
9+
}

0 commit comments

Comments
 (0)