Skip to content

Commit 2ee7666

Browse files
committed
Init
0 parents  commit 2ee7666

File tree

6 files changed

+586
-0
lines changed

6 files changed

+586
-0
lines changed

.gitignore

Lines changed: 268 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,268 @@
1+
*.pyproj
2+
web.config
3+
obj/
4+
5+
### Python ###
6+
# Byte-compiled / optimized / DLL files
7+
__pycache__/
8+
*.py[cod]
9+
10+
# C extensions
11+
*.so
12+
13+
# Distribution / packaging
14+
.Python
15+
env/
16+
bin/
17+
build/
18+
develop-eggs/
19+
dist/
20+
eggs/
21+
lib/
22+
lib64/
23+
parts/
24+
sdist/
25+
var/
26+
*.egg-info/
27+
.installed.cfg
28+
*.egg
29+
30+
# Installer logs
31+
pip-log.txt
32+
pip-delete-this-directory.txt
33+
34+
# Unit test / coverage reports
35+
htmlcov/
36+
.tox/
37+
.coverage
38+
.cache
39+
nosetests.xml
40+
coverage.xml
41+
42+
# Translations
43+
*.mo
44+
45+
# Mr Developer
46+
.mr.developer.cfg
47+
.project
48+
.pydevproject
49+
50+
# Rope
51+
.ropeproject
52+
53+
# Django stuff:
54+
*.log
55+
*.pot
56+
57+
# Sphinx documentation
58+
docs/_build/
59+
60+
61+
62+
### PyCharm ###
63+
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm
64+
65+
## Directory-based project format
66+
.idea/
67+
# if you remove the above rule, at least ignore user-specific stuff:
68+
# .idea/workspace.xml
69+
# .idea/tasks.xml
70+
# and these sensitive or high-churn files:
71+
# .idea/dataSources.ids
72+
# .idea/dataSources.xml
73+
# .idea/sqlDataSources.xml
74+
# .idea/dynamic.xml
75+
76+
## File-based project format
77+
*.ipr
78+
*.iws
79+
*.iml
80+
81+
## Additional for IntelliJ
82+
out/
83+
84+
# generated by mpeltonen/sbt-idea plugin
85+
.idea_modules/
86+
87+
# generated by JIRA plugin
88+
atlassian-ide-plugin.xml
89+
90+
# generated by Crashlytics plugin (for Android Studio and Intellij)
91+
com_crashlytics_export_strings.xml
92+
93+
94+
### VisualStudio ###
95+
## Ignore Visual Studio temporary files, build results, and
96+
## files generated by popular Visual Studio add-ons.
97+
98+
# User-specific files
99+
*.suo
100+
*.user
101+
*.sln.docstates
102+
103+
# Build results
104+
[Dd]ebug/
105+
[Dd]ebugPublic/
106+
[Rr]elease/
107+
x64/
108+
build/
109+
bld/
110+
[Bb]in/
111+
[Oo]bj/
112+
113+
# MSTest test Results
114+
[Tt]est[Rr]esult*/
115+
[Bb]uild[Ll]og.*
116+
117+
#NUNIT
118+
*.VisualState.xml
119+
TestResult.xml
120+
121+
# Build Results of an ATL Project
122+
[Dd]ebugPS/
123+
[Rr]eleasePS/
124+
dlldata.c
125+
126+
*_i.c
127+
*_p.c
128+
*_i.h
129+
*.ilk
130+
*.meta
131+
*.obj
132+
*.pch
133+
*.pdb
134+
*.pgc
135+
*.pgd
136+
*.rsp
137+
*.sbr
138+
*.tlb
139+
*.tli
140+
*.tlh
141+
*.tmp
142+
*.tmp_proj
143+
*.log
144+
*.vspscc
145+
*.vssscc
146+
.builds
147+
*.pidb
148+
*.svclog
149+
*.scc
150+
151+
# Chutzpah Test files
152+
_Chutzpah*
153+
154+
# Visual C++ cache files
155+
ipch/
156+
*.aps
157+
*.ncb
158+
*.opensdf
159+
*.sdf
160+
*.cachefile
161+
162+
# Visual Studio profiler
163+
*.psess
164+
*.vsp
165+
*.vspx
166+
167+
# TFS 2012 Local Workspace
168+
$tf/
169+
170+
# Guidance Automation Toolkit
171+
*.gpState
172+
173+
# ReSharper is a .NET coding add-in
174+
_ReSharper*/
175+
*.[Rr]e[Ss]harper
176+
*.DotSettings.user
177+
178+
# JustCode is a .NET coding addin-in
179+
.JustCode
180+
181+
# TeamCity is a build add-in
182+
_TeamCity*
183+
184+
# DotCover is a Code Coverage Tool
185+
*.dotCover
186+
187+
# NCrunch
188+
*.ncrunch*
189+
_NCrunch_*
190+
.*crunch*.local.xml
191+
192+
# MightyMoose
193+
*.mm.*
194+
AutoTest.Net/
195+
196+
# Web workbench (sass)
197+
.sass-cache/
198+
199+
# Installshield output folder
200+
[Ee]xpress/
201+
202+
# DocProject is a documentation generator add-in
203+
DocProject/buildhelp/
204+
DocProject/Help/*.HxT
205+
DocProject/Help/*.HxC
206+
DocProject/Help/*.hhc
207+
DocProject/Help/*.hhk
208+
DocProject/Help/*.hhp
209+
DocProject/Help/Html2
210+
DocProject/Help/html
211+
212+
# Click-Once directory
213+
publish/
214+
215+
# Publish Web Output
216+
*.[Pp]ublish.xml
217+
*.azurePubxml
218+
219+
# NuGet Packages Directory
220+
packages/
221+
## TODO: If the tool you use requires repositories.config uncomment the next line
222+
#!packages/repositories.config
223+
224+
# Enable "build/" folder in the NuGet Packages folder since NuGet packages use it for MSBuild targets
225+
# This line needs to be after the ignore of the build folder (and the packages folder if the line above has been uncommented)
226+
!packages/build/
227+
228+
# Windows Azure Build Output
229+
csx/
230+
*.build.csdef
231+
232+
# Windows Store app package directory
233+
AppPackages/
234+
235+
# Others
236+
sql/
237+
*.Cache
238+
ClientBin/
239+
[Ss]tyle[Cc]op.*
240+
~$*
241+
*~
242+
*.dbmdl
243+
*.dbproj.schemaview
244+
*.pfx
245+
*.publishsettings
246+
node_modules/
247+
248+
# RIA/Silverlight projects
249+
Generated_Code/
250+
251+
# Backup & report files from converting an old project file to a newer
252+
# Visual Studio version. Backup files are not needed, because we have git ;-)
253+
_UpgradeReport_Files/
254+
Backup*/
255+
UpgradeLog*.XML
256+
UpgradeLog*.htm
257+
258+
# SQL Server files
259+
*.mdf
260+
*.ldf
261+
262+
# Business Intelligence projects
263+
*.rdl.data
264+
*.bim.layout
265+
*.bim_*.settings
266+
267+
# Microsoft Fakes
268+
FakesAssemblies/

README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
oauth2-bottle-app
2+
=================
3+
4+
REST API frontend for Bottle; utilising the oauth2-rfc6749 library.

0 commit comments

Comments
 (0)