aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPacien TRAN-GIRARD2015-02-14 11:23:50 +0100
committerPacien TRAN-GIRARD2015-02-14 11:23:50 +0100
commit8b1f88ce72ef8496879395e7f04b676e6a16e07a (patch)
tree9215492c9240779cbcf16cf21a22fde0b61ed451
downloadgo-envcfg-8b1f88ce72ef8496879395e7f04b676e6a16e07a.tar.gz
Init repository
-rw-r--r--.gitignore78
-rw-r--r--LICENSE.txt21
2 files changed, 99 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore
new file mode 100644
index 0000000..2d797c0
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,78 @@
1# Created by .ignore support plugin (hsz.mobi)
2
3### JetBrains template
4# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm
5
6*.iml
7
8## Directory-based project format:
9.idea/
10# if you remove the above rule, at least ignore the following:
11
12# User-specific stuff:
13# .idea/workspace.xml
14# .idea/tasks.xml
15# .idea/dictionaries
16
17# Sensitive or high-churn files:
18# .idea/dataSources.ids
19# .idea/dataSources.xml
20# .idea/sqlDataSources.xml
21# .idea/dynamic.xml
22# .idea/uiDesigner.xml
23
24# Gradle:
25# .idea/gradle.xml
26# .idea/libraries
27
28# Mongo Explorer plugin:
29# .idea/mongoSettings.xml
30
31## File-based project format:
32*.ipr
33*.iws
34
35## Plugin-specific files:
36
37# IntelliJ
38out/
39
40# mpeltonen/sbt-idea plugin
41.idea_modules/
42
43# JIRA plugin
44atlassian-ide-plugin.xml
45
46# Crashlytics plugin (for Android Studio and IntelliJ)
47com_crashlytics_export_strings.xml
48crashlytics.properties
49crashlytics-build.properties
50
51
52### Go template
53# Compiled Object files, Static and Dynamic libs (Shared Objects)
54*.o
55*.a
56*.so
57
58# Folders
59_obj
60_test
61
62# Architecture specific extensions/prefixes
63*.[568vq]
64[568vq].out
65
66*.cgo1.go
67*.cgo2.c
68_cgo_defun.c
69_cgo_gotypes.go
70_cgo_export.*
71
72_testmain.go
73
74*.exe
75*.test
76*.prof
77
78
diff --git a/LICENSE.txt b/LICENSE.txt
new file mode 100644
index 0000000..4875b3e
--- /dev/null
+++ b/LICENSE.txt
@@ -0,0 +1,21 @@
1The MIT License (MIT)
2
3Copyright (c) 2015 Pacien TRAN-GIRARD
4
5Permission is hereby granted, free of charge, to any person obtaining a copy
6of this software and associated documentation files (the "Software"), to deal
7in the Software without restriction, including without limitation the rights
8to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9copies of the Software, and to permit persons to whom the Software is
10furnished to do so, subject to the following conditions:
11
12The above copyright notice and this permission notice shall be included in all
13copies or substantial portions of the Software.
14
15THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21SOFTWARE.