Skip to content

Commit 2f750d3

Browse files
committed
Merge branch 'master' into lastodash-ignoredeploy
Former-commit-id: 5dc6d1d
2 parents 23a884f + ba4beda commit 2f750d3

242 files changed

Lines changed: 41047 additions & 75 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ want to run is `my_dash_app` and the app filename is `app.py`, you
2121
would need to run `python apps/my_dash_app/app.py` from the root
2222
of the repository.
2323

24-
Each app has a requirements.txt, install the dependecies in a virtual
24+
Each app has a requirements.txt, install the dependencies in a virtual
2525
environment.
2626

2727
## Downloading and running a single app
Lines changed: 190 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,190 @@
1+
# .gitignore specifies the files that shouldn't be included
2+
# in version control and therefore shouldn't be included when
3+
# deploying an application to Dash Enterprise
4+
# This is a very exhaustive list!
5+
# This list was based off of https://github.com/github/gitignore
6+
7+
# Ignore data that is generated during the runtime of an application
8+
# This folder is used by the "Large Data" sample applications
9+
runtime_data/
10+
11+
# Omit SQLite databases that may be produced by dash-snapshots in development
12+
*.db
13+
14+
# Byte-compiled / optimized / DLL files
15+
__pycache__/
16+
*.py[cod]
17+
*$py.class
18+
19+
20+
# Jupyter Notebook
21+
22+
.ipynb_checkpoints
23+
*/.ipynb_checkpoints/*
24+
25+
# IPython
26+
profile_default/
27+
ipython_config.py
28+
29+
# Environments
30+
.env
31+
.venv
32+
env/
33+
venv/
34+
ENV/
35+
env.bak/
36+
venv.bak/
37+
38+
# Spyder project settings
39+
.spyderproject
40+
.spyproject
41+
42+
*.log
43+
local_settings.py
44+
db.sqlite3
45+
db.sqlite3-journal
46+
47+
48+
# macOS General
49+
.DS_Store
50+
.AppleDouble
51+
.LSOverride
52+
53+
# Icon must end with two \r
54+
Icon
55+
56+
# Thumbnails
57+
._*
58+
59+
# Files that might appear in the root of a volume
60+
.DocumentRevisions-V100
61+
.fseventsd
62+
.Spotlight-V100
63+
.TemporaryItems
64+
.Trashes
65+
.VolumeIcon.icns
66+
.com.apple.timemachine.donotpresent
67+
68+
# Directories potentially created on remote AFP share
69+
.AppleDB
70+
.AppleDesktop
71+
Network Trash Folder
72+
Temporary Items
73+
.apdisk
74+
75+
# Windows thumbnail cache files
76+
Thumbs.db
77+
Thumbs.db:encryptable
78+
ehthumbs.db
79+
ehthumbs_vista.db
80+
81+
# Dump file
82+
*.stackdump
83+
84+
# Folder config file
85+
[Dd]esktop.ini
86+
87+
# Recycle Bin used on file shares
88+
$RECYCLE.BIN/
89+
90+
# Windows Installer files
91+
*.cab
92+
*.msi
93+
*.msix
94+
*.msm
95+
*.msp
96+
97+
# Windows shortcuts
98+
*.lnk
99+
100+
# History files
101+
.Rhistory
102+
.Rapp.history
103+
104+
# Session Data files
105+
.RData
106+
107+
# User-specific files
108+
.Ruserdata
109+
110+
# Example code in package build process
111+
*-Ex.R
112+
113+
# Output files from R CMD check
114+
/*.Rcheck/
115+
116+
# RStudio files
117+
.Rproj.user/
118+
119+
# produced vignettes
120+
vignettes/*.html
121+
vignettes/*.pdf
122+
123+
# OAuth2 token, see https://github.com/hadley/httr/releases/tag/v0.3
124+
.httr-oauth
125+
126+
# knitr and R markdown default cache directories
127+
*_cache/
128+
/cache/
129+
130+
# Temporary files created by R markdown
131+
*.utf8.md
132+
*.knit.md
133+
134+
# R Environment Variables
135+
.Renviron
136+
137+
# Linux
138+
*~
139+
140+
# temporary files which can be created if a process still has a handle open of a deleted file
141+
.fuse_hidden*
142+
143+
# KDE directory preferences
144+
.directory
145+
146+
# Linux trash folder which might appear on any partition or disk
147+
.Trash-*
148+
149+
# .nfs files are created when an open file is removed but is still being accessed
150+
.nfs*
151+
152+
# VSCode
153+
.vscode/*
154+
!.vscode/settings.json
155+
!.vscode/tasks.json
156+
!.vscode/launch.json
157+
!.vscode/extensions.json
158+
*.code-workspace
159+
160+
# SublineText
161+
# Cache files for Sublime Text
162+
*.tmlanguage.cache
163+
*.tmPreferences.cache
164+
*.stTheme.cache
165+
166+
# Workspace files are user-specific
167+
*.sublime-workspace
168+
169+
# Project files should be checked into the repository, unless a significant
170+
# proportion of contributors will probably not be using Sublime Text
171+
# *.sublime-project
172+
173+
# SFTP configuration file
174+
sftp-config.json
175+
176+
# Package control specific files
177+
Package Control.last-run
178+
Package Control.ca-list
179+
Package Control.ca-bundle
180+
Package Control.system-ca-bundle
181+
Package Control.cache/
182+
Package Control.ca-certs/
183+
Package Control.merged-ca-bundle
184+
Package Control.user-ca-bundle
185+
oscrypto-ca-bundle.crt
186+
bh_unicode_properties.cache
187+
188+
# Sublime-github package stores a github token in this file
189+
# https://packagecontrol.io/packages/sublime-github
190+
GitHub.sublime-settings

apps/dash-chess-analytics/LICENSE

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
MIT License
2+
3+
Copyright (c) 2021 Exileus
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

0 commit comments

Comments
 (0)