Skip to content

Commit 02800bb

Browse files
committed
feat: userconcept add project v0.1.0
0 parents  commit 02800bb

File tree

8 files changed

+1182
-0
lines changed

8 files changed

+1182
-0
lines changed

.editorconfig

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
# editorconfig.org
2+
3+
root = true
4+
5+
[*]
6+
indent_style = space
7+
indent_size = 4
8+
end_of_line = lf
9+
charset = utf-8
10+
trim_trailing_whitespace = true
11+
insert_final_newline = true
12+
13+
[*json]
14+
indent_size = 2
15+
16+
[{/*.js,/*.ts}]
17+
indent_size = 2

.env.example

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
TELEGRAM_BOT_TOKEN=123456789:AAExampleYourRealTokenHere
2+
TELEGRAM_CHANNEL_ID=@your_channel_name

.gitignore

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
# Logs
2+
logs
3+
*.log
4+
npm-debug.log*
5+
yarn-debug.log*
6+
yarn-error.log*
7+
pnpm-debug.log*
8+
lerna-debug.log*
9+
10+
node_modules
11+
dist
12+
dist-ssr
13+
*.local
14+
15+
# Editor directories and files
16+
.vscode/*
17+
!.vscode/extensions.json
18+
.idea
19+
.DS_Store
20+
*.suo
21+
*.ntvs*
22+
*.njsproj
23+
*.sln
24+
*.sw?
25+
26+
.env
27+
.env.development
28+
.env.production

README.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
# chain-monitor-bot
2+
3+
Chain Monitor Bot.
4+
5+
## About project
6+
7+
Chain Monitor Bot.
8+
9+
## Basic commands
10+
11+
Install dependencies:
12+
13+
`npm i`
14+
15+
Start bot:
16+
17+
`npm run start`

0 commit comments

Comments
 (0)