Skip to content

Commit ae116f0

Browse files
committed
update README.md and git ignore 🌱
1 parent 0bbc363 commit ae116f0

File tree

3 files changed

+15
-130
lines changed

3 files changed

+15
-130
lines changed

‎.gitignore

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

‎README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<br />
33
<p align="center">
44
<a href="https://github.com/kylesliu/web3.go">
5-
<img src="https://s.gin.sh/blog/blockchain/eth_hero.png" alt="Logo" width="680" height="256">
5+
<img src="./assets/img/Ethereum-icon-purple.svg" alt="Logo" width="680" height="256">
66
</a>
77

88
<h3 align="center">Web3 Go</h3>
+13
Loading

0 commit comments

Comments
 (0)