Skip to content

Commit 08fa1c6

Browse files
committed
Rewrite in TypeScript
1 parent 5c48b30 commit 08fa1c6

Some content is hidden

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

75 files changed

+2615
-1209
lines changed

.DS_Store

-6 KB
Binary file not shown.

.env

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
HTTP_PORT = 8080
2+
HTTPS_PORT = 8443

.env.development

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
CREDENTIALS_ENABLED = 0
2+
WEBHOOK_ENABLED = 0

.env.production

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
CREDENTIALS_ENABLED = 1
2+
WEBHOOK_ENABLED = 1

.gitignore

+12-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,16 @@
1+
# WebStorm settings
12
/.idea
3+
4+
# npm
25
/node_modules
36
/npm-debug.log
4-
/public
5-
/pm2.config.js
7+
8+
# macOS
69
.DS_Store
10+
11+
# local .env* files
12+
.env.local
13+
.env.*.local
14+
15+
# downloaded files
16+
/public

.idea/encodings.xml

-4
This file was deleted.

.idea/misc.xml

-6
This file was deleted.

.idea/modules.xml

-8
This file was deleted.

.idea/server.iml

-12
This file was deleted.

.idea/vcs.xml

-8
This file was deleted.

.idea/webResources.xml

-14
This file was deleted.

.idea/workspace.xml

-266
This file was deleted.

0 commit comments

Comments
 (0)