Compare commits

...

2 Commits

Author SHA1 Message Date
starcalc d900bc3844 Sample config.json file
continuous-integration/drone/push Build is passing Details
2022-06-22 22:38:37 +02:00
starcalc 9bcdfcf56c Environment to the correct step 2022-06-22 22:27:00 +02:00
2 changed files with 24 additions and 7 deletions

View File

@ -26,6 +26,13 @@ steps:
- platformio run --environment d1_mini - platformio run --environment d1_mini
# Build file system image # Build file system image
- platformio run --target buildfs --environment d1_mini - platformio run --target buildfs --environment d1_mini
environment:
hostname:
from_secret: hostname
IOTSSID:
from_secret: iotssid
iotpwd:
from_secret: iotpwd
- name: upload - name: upload
image: python:3.10 image: python:3.10
commands: commands:
@ -37,13 +44,7 @@ steps:
# (Build if necessary and) Upload Filesystem Image (here: OTA) # (Build if necessary and) Upload Filesystem Image (here: OTA)
# - platformio run --target uploadfs --environment d1_mini # - platformio run --target uploadfs --environment d1_mini
environment:
hostname:
from_secret: hostname
IOTSSID:
from_secret: iotssid
iotpwd:
from_secret: iotpwd
#- name: release #- name: release
# image: python:3.10 # eclipse/platformio # # image: python:3.10 # eclipse/platformio #
# commands: # commands:

View File

@ -0,0 +1,16 @@
{
"name": "HOSTNAME",
"device_id": "HOSTNAME",
"wifi": {
"ssid": "WIFISSID",
"password": "WIFIPASS"
},
"mqtt": {
"host": "mqtt.ctdo.de",
"port": 1883,
"auth": false
},
"ota": {
"enabled": true
}
}