Skip to content
This repository was archived by the owner on Oct 16, 2022. It is now read-only.

Commit 0c3d495

Browse files
committed
Initial open-source release
0 parents  commit 0c3d495

Some content is hidden

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

101 files changed

+6047
-0
lines changed

.fonts/SFProText-Bold_0.ttf

446 KB
Binary file not shown.

.fonts/SFProText-Heavy_0.ttf

446 KB
Binary file not shown.

.fonts/SFProText-Light_0.ttf

443 KB
Binary file not shown.

.fonts/SFProText-Medium_0.ttf

443 KB
Binary file not shown.

.fonts/SFProText-Regular_0.ttf

424 KB
Binary file not shown.

.fonts/SFProText-Semibold_0.ttf

443 KB
Binary file not shown.

.gitignore

Lines changed: 263 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,263 @@
1+
2+
### JetBrains stuff
3+
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio, WebStorm and Rider
4+
# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
5+
6+
# User-specific stuff
7+
.idea/**/workspace.xml
8+
.idea/**/tasks.xml
9+
.idea/**/usage.statistics.xml
10+
.idea/**/dictionaries
11+
.idea/**/shelf
12+
13+
# Generated files
14+
.idea/**/contentModel.xml
15+
16+
# Sensitive or high-churn files
17+
.idea/**/dataSources/
18+
.idea/**/dataSources.ids
19+
.idea/**/dataSources.local.xml
20+
.idea/**/sqlDataSources.xml
21+
.idea/**/dynamic.xml
22+
.idea/**/uiDesigner.xml
23+
.idea/**/dbnavigator.xml
24+
25+
# Gradle
26+
.idea/**/gradle.xml
27+
.idea/**/libraries
28+
29+
# Gradle and Maven with auto-import
30+
# When using Gradle or Maven with auto-import, you should exclude module files,
31+
# since they will be recreated, and may cause churn. Uncomment if using
32+
# auto-import.
33+
# .idea/artifacts
34+
# .idea/compiler.xml
35+
# .idea/jarRepositories.xml
36+
# .idea/modules.xml
37+
# .idea/*.iml
38+
# .idea/modules
39+
# *.iml
40+
# *.ipr
41+
42+
# CMake
43+
cmake-build-*/
44+
45+
# Mongo Explorer plugin
46+
.idea/**/mongoSettings.xml
47+
48+
# File-based project format
49+
*.iws
50+
51+
# IntelliJ
52+
out/
53+
54+
# mpeltonen/sbt-idea plugin
55+
.idea_modules/
56+
57+
# JIRA plugin
58+
atlassian-ide-plugin.xml
59+
60+
# Cursive Clojure plugin
61+
.idea/replstate.xml
62+
63+
# Crashlytics plugin (for Android Studio and IntelliJ)
64+
com_crashlytics_export_strings.xml
65+
crashlytics.properties
66+
crashlytics-build.properties
67+
fabric.properties
68+
69+
# Editor-based Rest Client
70+
.idea/httpRequests
71+
72+
# Android studio 3.1+ serialized cache file
73+
.idea/caches/build_file_checksums.ser
74+
75+
### Example user stuff
76+
77+
# IntelliJ project files
78+
.idea
79+
*.iml
80+
out
81+
gen
82+
83+
### Linux stuff
84+
*~
85+
86+
# temporary files which can be created if a process still has a handle open of a deleted file
87+
.fuse_hidden*
88+
89+
# KDE directory preferences
90+
.directory
91+
92+
# Linux trash folder which might appear on any partition or disk
93+
.Trash-*
94+
95+
# .nfs files are created when an open file is removed but is still being accessed
96+
.nfs*
97+
98+
### Windows stuff
99+
# Windows thumbnail cache files
100+
Thumbs.db
101+
Thumbs.db:encryptable
102+
ehthumbs.db
103+
ehthumbs_vista.db
104+
105+
# Dump file
106+
*.stackdump
107+
108+
# Folder config file
109+
[Dd]esktop.ini
110+
111+
# Recycle Bin used on file shares
112+
$RECYCLE.BIN/
113+
114+
# Windows Installer files
115+
*.cab
116+
*.msi
117+
*.msix
118+
*.msm
119+
*.msp
120+
121+
# Windows shortcuts
122+
*.lnk
123+
124+
### macOS stuff
125+
# General
126+
.DS_Store
127+
.AppleDouble
128+
.LSOverride
129+
130+
# Icon must end with two \r
131+
Icon
132+
133+
# Thumbnails
134+
._*
135+
136+
# Files that might appear in the root of a volume
137+
.DocumentRevisions-V100
138+
.fseventsd
139+
.Spotlight-V100
140+
.TemporaryItems
141+
.Trashes
142+
.VolumeIcon.icns
143+
.com.apple.timemachine.donotpresent
144+
145+
# Directories potentially created on remote AFP share
146+
.AppleDB
147+
.AppleDesktop
148+
Network Trash Folder
149+
Temporary Items
150+
.apdisk
151+
152+
### Node stuff
153+
# Logs
154+
logs
155+
*.log
156+
npm-debug.log*
157+
yarn-debug.log*
158+
yarn-error.log*
159+
lerna-debug.log*
160+
161+
# Diagnostic reports (https://nodejs.org/api/report.html)
162+
report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json
163+
164+
# Runtime data
165+
pids
166+
*.pid
167+
*.seed
168+
*.pid.lock
169+
170+
# Directory for instrumented libs generated by jscoverage/JSCover
171+
lib-cov
172+
173+
# Coverage directory used by tools like istanbul
174+
coverage
175+
*.lcov
176+
177+
# nyc test coverage
178+
.nyc_output
179+
180+
# Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files)
181+
.grunt
182+
183+
# Bower dependency directory (https://bower.io/)
184+
bower_components
185+
186+
# node-waf configuration
187+
.lock-wscript
188+
189+
# Compiled binary addons (https://nodejs.org/api/addons.html)
190+
build/Release
191+
192+
# Dependency directories
193+
node_modules/
194+
jspm_packages/
195+
196+
# Snowpack dependency directory (https://snowpack.dev/)
197+
web_modules/
198+
199+
# TypeScript cache
200+
*.tsbuildinfo
201+
202+
# Optional npm cache directory
203+
.npm
204+
205+
# Optional eslint cache
206+
.eslintcache
207+
208+
# Microbundle cache
209+
.rpt2_cache/
210+
.rts2_cache_cjs/
211+
.rts2_cache_es/
212+
.rts2_cache_umd/
213+
214+
# Optional REPL history
215+
.node_repl_history
216+
217+
# Output of 'npm pack'
218+
*.tgz
219+
220+
# Yarn Integrity file
221+
.yarn-integrity
222+
223+
# parcel-bundler cache (https://parceljs.org/)
224+
.cache
225+
.parcel-cache
226+
227+
# Next.js build output
228+
.next
229+
230+
# Nuxt.js build / generate output
231+
.nuxt
232+
dist
233+
234+
# Gatsby files
235+
.cache/
236+
# Comment in the public line in if your project uses Gatsby and not Next.js
237+
# https://nextjs.org/blog/next-9-1#public-directory-support
238+
# public
239+
240+
# vuepress build output
241+
.vuepress/dist
242+
243+
# Serverless directories
244+
.serverless/
245+
246+
# FuseBox cache
247+
.fusebox/
248+
249+
# DynamoDB Local files
250+
.dynamodb/
251+
252+
# TernJS port file
253+
.tern-port
254+
255+
# Stores VSCode versions used for testing VSCode extensions
256+
.vscode-test
257+
258+
# yarn v2
259+
260+
.yarn/cache
261+
.yarn/unplugged
262+
.yarn/build-state.yml
263+
.pnp.*

LICENSE

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
Copyright (C) 2020 Androz
2+
3+
Permission to use, copy, modify, and/or distribute this software for any
4+
purpose with or without fee is hereby granted, provided that the above
5+
copyright notice and this permission notice appear in all copies.
6+
7+
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
8+
WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
9+
MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
10+
ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
11+
WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION
12+
OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN
13+
CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.

Procfile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
web: node index.js

README.md

Whitespace-only changes.

0 commit comments

Comments
 (0)