Skip to content

Commit

Permalink
Initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
seniorquico committed Sep 5, 2024
0 parents commit 26a32f2
Show file tree
Hide file tree
Showing 4 changed files with 305 additions and 0 deletions.
181 changes: 181 additions & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1,181 @@
* text=auto
*.7z binary
*.ada text diff=ada
*.ai binary
*.bat text eol=crlf
*.bib text diff=bibtex
*.bmp binary
*.c text diff=cpp
*.cff text
*.class binary
*.cmd text eol=crlf
*.code-workspace text
*.cpp text diff=cpp
*.cs text diff=csharp
*.csproj text
*.css text diff=css
*.csv text
*.dcproj text
*.dll binary
*.doc binary diff=astextplain
*.Dockerfile text
*.docm binary diff=astextplain
*.docx binary diff=astextplain
*.dot binary diff=astextplain
*.dotm binary diff=astextplain
*.dotx binary diff=astextplain
*.env text
*.eot binary
*.eps binary
*.exe binary
*.f text diff=fortran
*.f90 text diff=fortran
*.for text diff=fortran
*.gif binary
*.go text diff=golang
*.gz binary
*.h text diff=cpp
*.htm text diff=html
*.html text diff=html
*.ico binary
*.ini text
*.jar binary
*.java text diff=java
*.jpeg binary
*.jpg binary
*.js text
*.json text
*.jsp text
*.jsx text
*.less text
*.m text diff=matlab
*.m4a binary
*.m4v binary
*.md text
*.mid binary
*.midi binary
*.mov binary
*.mp3 binary
*.mp4 binary
*.mpeg binary
*.mpg binary
*.o binary
*.odf binary diff=astextplain
*.odp binary
*.ods binary diff=astextplain
*.odt binary diff=astextplain
*.ogg binary
*.otf binary
*.pas text diff=pascal
*.pbxproj binary
*.pdb binary
*.pdf binary diff=astextplain
*.php text diff=php
*.pl text diff=perl
*.pm text diff=perl
*.png binary
*.pot binary
*.potx binary
*.pp text diff=pascal
*.ppt binary
*.pptx binary
*.properties text
*.props text
*.proto text
*.ps1 text eol=lf
*.psd binary
*.pxd text
*.py text diff=python
*.py3 text diff=python
*.pyc binary
*.pyd binary
*.pyo binary
*.pyw text diff=python
*.pywz binary
*.pyx text
*.pyz binary
*.rake text diff=ruby
*.rar binary
*.rb text diff=ruby
*.rtf text diff=astextplain
*.ruleset text
*.sass text
*.scss text
*.sh text eol=lf
*.sln text
*.so binary
*.sql text
*.styl text
*.svg text
*.svgz binary
*.tar binary
*.targets text
*.tex text diff=tex
*.tif binary
*.tiff binary
*.ts text
*.tsv text
*.tsx text
*.ttf binary
*.txt text
*.vbproj text
*.war binary
*.wav binary
*.wbmp binary
*.webm binary
*.webp binary
*.woff binary
*.woff2 binary
*.xhtml text diff=html
*.xls binary
*.xlsx binary
*.xlt binary
*.xltx binary
*.xml text
*.xslt text
*.xz binary
*.yaml text
*.yml text
*.zip binary
.babelrc text
.dockerignore text
.editorconfig text
.eslintrc text
.gitattributes text
.gitconfig text
.gitignore text
.helmignore text
.htaccess text
.nvmrc text eol=lf
.prettierignore text
.prettierrc text
.yarnclean text
.yarnrc text
ACKNOWLEDGMENTS text
AUTHORS text
CHANGELOG text
CHANGES text
CNAME text
CODE_OF_CONDUCT text
CodeMaid.config text
CODEOWNERS text
CONTRIBUTING text
CONTRIBUTORS text
COPYING text
COPYRIGHT text
Dockerfile* text
HISTORY text
INSTALL text
ISSUE_TEMPLATE text
LICENSE text
Makefile text
makefile text
NEWS text
paket.dependencies text
paket.references text
PULL_REQUEST_TEMPLATE text
README text
RELEASES text
SECURITY text
SUPPORT text
TODO text
4 changes: 4 additions & 0 deletions .github/CODEOWNERS
Validating CODEOWNERS rules …
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
* @SaladTechnologies/admins @SaladTechnologies/devops

# Administrators must approve changes to code owners (and other GitHub-specific resources).
/.github/ @SaladTechnologies/admins
119 changes: 119 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,119 @@
## Linux.gitignore
## https://github.com/github/gitignore

*~

# temporary files which can be created if a process still has a handle open of a deleted file
.fuse_hidden*

# KDE directory preferences
.directory

# Linux trash folder which might appear on any partition or disk
.Trash-*

# .nfs files are created when an open file is removed but is still being accessed
.nfs*

## macOS.gitignore
## https://github.com/github/gitignore

# General
.DS_Store
.AppleDouble
.LSOverride

# Icon must end with two \r
Icon

# Thumbnails
._*

# Files that might appear in the root of a volume
.DocumentRevisions-V100
.fseventsd
.Spotlight-V100
.TemporaryItems
.Trashes
.VolumeIcon.icns
.com.apple.timemachine.donotpresent

# Directories potentially created on remote AFP share
.AppleDB
.AppleDesktop
Network Trash Folder
Temporary Items
.apdisk

## Windows.gitignore
## https://github.com/github/gitignore

# Windows thumbnail cache files
Thumbs.db
Thumbs.db:encryptable
ehthumbs.db
ehthumbs_vista.db

# Dump file
*.stackdump

# Folder config file
[Dd]esktop.ini

# Recycle Bin used on file shares
$RECYCLE.BIN/

# Windows Installer files
*.cab
*.msi
*.msix
*.msm
*.msp

# Windows shortcuts
*.lnk

## Go.gitignore
## https://github.com/github/gitignore

# If you prefer the allow list template instead of the deny list, see community template:
# https://github.com/github/gitignore/blob/main/community/Golang/Go.AllowList.gitignore
#
# Binaries for programs and plugins
*.exe
*.exe~
*.dll
*.so
*.dylib

# 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 workspace file
go.work
go.work.sum

# env file
.env

## VisualStudioCode.gitignore
## https://github.com/github/gitignore

.vscode/*
!.vscode/settings.json
!.vscode/tasks.json
!.vscode/launch.json
!.vscode/extensions.json
!.vscode/*.code-snippets

# Local History for Visual Studio Code
.history/

# Built Visual Studio Code Extensions
*.vsix
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# SaladCloud IMDS SDK for Go

0 comments on commit 26a32f2

Please sign in to comment.