レンタルサーバーと連携したsakura.ioの運用例

Dependencies:   mbed SakuraIO MPU9250_SPI BME280 gps AQM0802A

Committer:
punix
Date:
Wed Nov 21 08:54:34 2018 +0000
Revision:
0:d2c4ee597498
TEST 20181121

Who changed what in which revision?

UserRevisionLine numberNew contents of line
punix 0:d2c4ee597498 1 # Maintenance
punix 0:d2c4ee597498 2
punix 0:d2c4ee597498 3 ## Sync with github.com
punix 0:d2c4ee597498 4
punix 0:d2c4ee597498 5 ### Setup hg-git
punix 0:d2c4ee597498 6
punix 0:d2c4ee597498 7 ```bash
punix 0:d2c4ee597498 8 pip install mercurial hg-git
punix 0:d2c4ee597498 9 ```
punix 0:d2c4ee597498 10
punix 0:d2c4ee597498 11 #### ~/.hgrc
punix 0:d2c4ee597498 12
punix 0:d2c4ee597498 13 ```
punix 0:d2c4ee597498 14 [extensions]
punix 0:d2c4ee597498 15 hggit =
punix 0:d2c4ee597498 16 ```
punix 0:d2c4ee597498 17
punix 0:d2c4ee597498 18 ### mbed.org to github.com
punix 0:d2c4ee597498 19
punix 0:d2c4ee597498 20 ```bash
punix 0:d2c4ee597498 21 hg clone https://developer.mbed.org/teams/SAKURA-Internet/code/SakuraIO_Evaluation_Board_Standard/ SakuraIO_Evaluation_Board_Standard-sync
punix 0:d2c4ee597498 22 cd SakuraIO_Evaluation_Board_Standard
punix 0:d2c4ee597498 23 hg push git@github.com:sakuraio/SakuraIO_Evaluation_Board_Standard.git
punix 0:d2c4ee597498 24 ```
punix 0:d2c4ee597498 25
punix 0:d2c4ee597498 26 ### github.com to mbed.org
punix 0:d2c4ee597498 27
punix 0:d2c4ee597498 28 ```bash
punix 0:d2c4ee597498 29 hg pull git@github.com:sakuraio/SakuraIO_Evaluation_Board_Standard.git
punix 0:d2c4ee597498 30 hg outgoing https://developer.mbed.org/teams/SAKURA-Internet/code/SakuraIO_Evaluation_Board_Standard/ # check diff
punix 0:d2c4ee597498 31 hg push https://developer.mbed.org/teams/SAKURA-Internet/code/SakuraIO_Evaluation_Board_Standard/
punix 0:d2c4ee597498 32 ```