File tree Expand file tree Collapse file tree 2 files changed +15
-5
lines changed Expand file tree Collapse file tree 2 files changed +15
-5
lines changed Original file line number Diff line number Diff line change @@ -27,15 +27,24 @@ TVWB uses [Flask](https://flask.palletsprojects.com/en/2.2.x/) to handle the web
27
27
28
28
# Quickstart 📘
29
29
30
- If you an experienced Python developer, you can skip the Installation and Serving the app Sections.
31
- They cover installing with pip and serving a flask app.
30
+ ### Installation
32
31
33
- * [ Installation ] ( https://github.com/robswc/tradingview-webhooks-bot/wiki/Installation )
34
- * [ Serving the App ] ( https://github.com/robswc/tradingview-webhooks-bot/wiki/Hosting )
32
+ * [ Docker ] ( https://github.com/robswc/tradingview-webhooks-bot/wiki/Docker ) (recommended )
33
+ * [ Manual ] ( https://github.com/robswc/tradingview-webhooks-bot/wiki/Installation )
35
34
35
+ ### Hosting
36
36
37
- ** Ensure you're in the ` src ` directory.**
37
+ * [ Deploying] ( https://github.com/robswc/tradingview-webhooks-bot/wiki/Hosting )
38
+ * [ Cloud] ( https://github.com/robswc/tradingview-webhooks-bot/wiki/Hosting#cloud-hosting ) (recommended)
39
+ * [ Local] ( https://github.com/robswc/tradingview-webhooks-bot/wiki/Hosting#using-a-personal-pc )
38
40
41
+
42
+ ---
43
+ Ensure you're in the ` src ` directory. When running the following commands, ** if you installed manually** .
44
+ ** If you used docker** ,
45
+ start the tvwb.py shell with ` docker-compose run app shell ` (in the project root directory) and omit the ` python3 tvwb.py ` portion of the commands.
46
+
47
+ ---
39
48
### Creating an action
40
49
41
50
``` bash
Original file line number Diff line number Diff line change @@ -5,6 +5,7 @@ services:
5
5
dockerfile : Dockerfile
6
6
volumes :
7
7
- ./src/components:/app/components
8
+ - ./src/settings.py:/app/settings.py
8
9
ports :
9
10
- " 5000:5000"
10
11
network_mode : ' host'
You can’t perform that action at this time.
0 commit comments