Browse Source

First commit after clone

Sasan Torabkheslat 5 years ago
parent
commit
6a6a98606a
7 changed files with 40 additions and 6 deletions
  1. 8 0
      .idea/.gitignore
  2. 8 0
      .idea/jwt-auth.iml
  3. 6 0
      .idea/misc.xml
  4. 8 0
      .idea/modules.xml
  5. 6 0
      .idea/vcs.xml
  6. 4 6
      README.md
  7. BIN
      ZiTel-Sysbo-WS

+ 8 - 0
.idea/.gitignore

@@ -0,0 +1,8 @@
+# Default ignored files
+/shelf/
+/workspace.xml
+# Datasource local storage ignored files
+/dataSources/
+/dataSources.local.xml
+# Editor-based HTTP Client requests
+/httpRequests/

+ 8 - 0
.idea/jwt-auth.iml

@@ -0,0 +1,8 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<module type="WEB_MODULE" version="4">
+  <component name="NewModuleRootManager">
+    <content url="file://$MODULE_DIR$" />
+    <orderEntry type="inheritedJdk" />
+    <orderEntry type="sourceFolder" forTests="false" />
+  </component>
+</module>

+ 6 - 0
.idea/misc.xml

@@ -0,0 +1,6 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<project version="4">
+  <component name="JavaScriptSettings">
+    <option name="languageLevel" value="ES6" />
+  </component>
+</project>

+ 8 - 0
.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/jwt-auth.iml" filepath="$PROJECT_DIR$/.idea/jwt-auth.iml" />
+    </modules>
+  </component>
+</project>

+ 6 - 0
.idea/vcs.xml

@@ -0,0 +1,6 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<project version="4">
+  <component name="VcsDirectoryMappings">
+    <mapping directory="$PROJECT_DIR$" vcs="Git" />
+  </component>
+</project>

+ 4 - 6
README.md

@@ -1,11 +1,9 @@
-# JWT Authentication in Golang
+# ZiTel WebService Template by Sassan
 
-A basic Golang application showing how to implement JWT authentication using the Echo framework.
+A template with the following features for internal projects of Sysbo-Team at ZiTel
 
-## How to run
 
-`go run *.go`
+## How to run
 
-## Contributions
+`go build .`
 
-If you find any improvement scopes, please free to contribute.

BIN
ZiTel-Sysbo-WS