Skip to content

Commit

Permalink
Initial creation.
Browse files Browse the repository at this point in the history
  • Loading branch information
zooba committed Feb 6, 2016
0 parents commit cb12532
Show file tree
Hide file tree
Showing 4 changed files with 157 additions and 0 deletions.
13 changes: 13 additions & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
# Set the default behavior (used when a rule below doesn't match)
* text=auto

*.sln -text
*.ico -text
*.bmp -text
*.png -text
*.snk -text
*.mht -text
*.pickle -text

# Some Windows-specific files should always be CRLF
*.bat eol=crlf
61 changes: 61 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,61 @@
# Python cache
__pycache__/
*.pyc

# Virtual environment
env/

# PTVS analysis
.ptvs/

# Build results
bin/
obj/
dist/
MANIFEST

# Result of running python setup.py install/pip install -e
RECORD.txt
build/
*.egg-info/

# Test results
TestResults/

# Credentials
credentials_real.json
testsettings_local.json
servicebus_settings_real.py
storage_settings_real.py
legacy_mgmt_settings_real.py
mgmt_settings_real.py
app_creds_real.py

# User-specific files
*.suo
*.user
*.sln.docstates
.vs/

# Windows image file caches
Thumbs.db
ehthumbs.db

# Folder config file
Desktop.ini

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

# Mac desktop service store files
.DS_Store

.idea
src/build
*.iml
/doc/_build
/.vs/config/applicationhost.config

# Azure deployment credentials
*.pubxml

21 changes: 21 additions & 0 deletions .hgeol
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
[patterns]

**.sln = BIN
**.ico = BIN
**.bmp = BIN
**.png = BIN
**.snk = BIN
**.mht = BIN
**.pickle = BIN

# Some Windows-specific files should always be CRLF

**.bat = CRLF

# All other files (which presumably are human-editable) are "native".
# This must be the last rule!

** = native

[repository]
native = LF
62 changes: 62 additions & 0 deletions .hgignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,62 @@
syntax: glob
# Python cache
__pycache__/
*.pyc

# Virtual environment
env/

# PTVS analysis
.ptvs/

# Build results
bin/
obj/
dist/
MANIFEST

# Result of running python setup.py install/pip install -e
RECORD.txt
build/
*.egg-info/

# Test results
TestResults/

# Credentials
credentials_real.json
testsettings_local.json
servicebus_settings_real.py
storage_settings_real.py
legacy_mgmt_settings_real.py
mgmt_settings_real.py
app_creds_real.py

# User-specific files
*.suo
*.user
*.sln.docstates
.vs/

# Windows image file caches
Thumbs.db
ehthumbs.db

# Folder config file
Desktop.ini

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

# Mac desktop service store files
.DS_Store

.idea
src/build
*.iml
/doc/_build
/.vs/config/applicationhost.config

# Azure deployment credentials
*.pubxml

0 comments on commit cb12532

Please sign in to comment.