Skip to content
This repository has been archived by the owner on Jun 25, 2021. It is now read-only.

Commit

Permalink
INIT: first commit
Browse files Browse the repository at this point in the history
  • Loading branch information
sargon64 committed Apr 14, 2021
0 parents commit 9e577ea
Show file tree
Hide file tree
Showing 94 changed files with 139,207 additions and 0 deletions.
94 changes: 94 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,94 @@
# Logs
logs
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*
firebase-debug.log*
firebase-debug.*.log*

# Firebase cache
.firebase/

# Firebase config

# Uncomment this if you'd like others to create their own Firebase project.
# For a team working on the same Firebase project(s), it is recommended to leave
# it commented so all members can deploy to the same project(s) in .firebaserc.
# .firebaserc

# Runtime data
pids
*.pid
*.seed
*.pid.lock

# Directory for instrumented libs generated by jscoverage/JSCover
lib-cov

# Coverage directory used by tools like istanbul
coverage

# nyc test coverage
.nyc_output

# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
.grunt

# Bower dependency directory (https://bower.io/)
bower_components

# node-waf configuration
.lock-wscript

# Compiled binary addons (http://nodejs.org/api/addons.html)
build/Release

# Dependency directories
node_modules/

# Optional npm cache directory
.npm

# Optional eslint cache
.eslintcache

# Optional REPL history
.node_repl_history

# Output of 'npm pack'
*.tgz

# Yarn Integrity file
.yarn-integrity

# dotenv environment variables file
.env

internal/logs
internal/*.log
internal/npm-debug.log*
internal/yarn-debug.log*
internal/yarn-error.log*
internal/firebase-debug.log*
internal/firebase-debug.*.log*
internal/.firebase/
internal/pids
internal/*.pid
internal/*.seed
internal/*.pid.lock
internal/lib-cov
internal/coverage
internal/.nyc_output
internal/.grunt
internal/bower_components
internal/.lock-wscript
internal/build/Release
internal/node_modules/
internal/.npm
internal/.eslintcache
internal/.node_repl_history
internal/*.tgz
internal/.yarn-integrity
internal/.env
out/
17 changes: 17 additions & 0 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
{
"version": "0.2.0",
"configurations": [
{
"name": "Debug Main Process",
"type": "node",
"request": "launch",
"cwd": "${workspaceFolder}",
"runtimeExecutable": "${workspaceFolder}/node_modules/.bin/electron",
"windows": {
"runtimeExecutable": "${workspaceFolder}/node_modules/.bin/electron.cmd"
},
"args" : ["."],
"outputCapture": "std"
}
]
}
1,566 changes: 1,566 additions & 0 deletions 404.html

Large diffs are not rendered by default.

869 changes: 869 additions & 0 deletions app.html

Large diffs are not rendered by default.

Loading

0 comments on commit 9e577ea

Please sign in to comment.