Skip to content

Commit

Permalink
initial
Browse files Browse the repository at this point in the history
  • Loading branch information
Lizard-King101 committed Jan 7, 2022
0 parents commit 94b8712
Show file tree
Hide file tree
Showing 25 changed files with 5,450 additions and 0 deletions.
38 changes: 38 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
# Packages #
############
# it's better to unpack these files and commit the raw source
# git has its own built in compression methods
*.7z
*.dmg
*.gz
*.iso
*.jar
*.rar
*.tar
*.zip

# Logs and databases #
######################
*.log
*.sql
*.sqlite

# OS generated files #
######################
.DS_Store
.DS_Store?
._*
.Spotlight-V100
.Trashes
ehthumbs.db
Thumbs.db

# Build Files #
###############
build/**


# Dependancies #
################

node_modules/**
11 changes: 11 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
# Node Typescript BoilerPlate

## Commands

### Serve

`npx serve`

### Build

`npx build`
1 change: 1 addition & 0 deletions cache/1622671200000_OPN_10.json
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
[{"id":6,"value":"0.03898915822448293","date":"2021-06-02T22:40:01.000Z","interval":"1,5,10"},{"id":16,"value":"0.03898915822448293","date":"2021-06-02T22:50:00.000Z","interval":"1,5,10"},{"id":31,"value":"0.03898915822448293","date":"2021-06-03T01:20:00.000Z","interval":"1,5,10"},{"id":44,"value":"0.03898915822448293","date":"2021-06-03T01:30:01.000Z","interval":"1,5,10,30"},{"id":58,"value":"0.03898915822448293","date":"2021-06-03T01:40:01.000Z","interval":"1,5,10"},{"id":59,"value":"0.03898915822448293","date":"2021-06-03T01:40:09.000Z","interval":"1,5,10"},{"id":60,"value":"0.03898915822448293","date":"2021-06-03T01:40:23.000Z","interval":"1,5,10"},{"id":61,"value":"0.03898915822448293","date":"2021-06-03T01:40:44.000Z","interval":"1,5,10"}]
1 change: 1 addition & 0 deletions cache/1622671200000_SMPP_10.json
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
[{"id":6,"value":"10001","date":"2021-06-02T22:40:01.000Z","interval":"1,5,10"},{"id":16,"value":"10001","date":"2021-06-02T22:50:00.000Z","interval":"1,5,10"},{"id":31,"value":"10001","date":"2021-06-03T01:20:00.000Z","interval":"1,5,10"},{"id":40,"value":"10001","date":"2021-06-03T01:30:01.000Z","interval":"1,5,10,30"},{"id":54,"value":"10001","date":"2021-06-03T01:40:01.000Z","interval":"1,5,10"},{"id":55,"value":"10001","date":"2021-06-03T01:40:09.000Z","interval":"1,5,10"},{"id":56,"value":"10001","date":"2021-06-03T01:40:23.000Z","interval":"1,5,10"},{"id":57,"value":"10001","date":"2021-06-03T01:40:44.000Z","interval":"1,5,10"}]
17 changes: 17 additions & 0 deletions config.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
{
"hosts": {
"production": {
"httpPort": 80,
"httpsPort": 443
},
"development": {
"httpPort": 3000,
"httpsPort": 3030
}
},
"bot_config": {
"bot_token": "OTI4NDYzNTk2ODM5NjQxMTY5.YdZJGw.sq68_kJOFGwNXofK0LstdEkA7Rg",
"application_id": "928463596839641169"
},
"socketio": false
}
Empty file added info.json
Empty file.
6 changes: 6 additions & 0 deletions nodemon.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"watch": ["src"],
"ext": ".ts,.js",
"ignore": [],
"exec": "npx ts-node ./src/index.ts"
}
Loading

0 comments on commit 94b8712

Please sign in to comment.