Преглед изворни кода

Merge branch 'main' of https://github.com/ArduPilot/CustomBuild

willpiper пре 4 година
родитељ
комит
f68ebb70be
1 измењених фајлова са 34 додато и 0 уклоњено
  1. 34 0
      README.md

+ 34 - 0
README.md

@@ -0,0 +1,34 @@
+# ArduPilot Custom Firmware Builder
+
+## Summary
+
+This is a website that generates a downloadable custom ArduPilot firmware, based on user selection.
+
+## For developers
+
+This website uses the flask library.
+
+To run:
+
+```
+./app.py
+```
+
+For Apache web server http://localhost:8080 :
+
+```
+DocumentRoot "ardupilot/done"
+<Directory ardupilot/done>
+				Options Indexes FollowSymLinks MultiViews
+				AllowOverride None
+				Order allow,deny
+				allow from all
+Require all granted
+</Directory>
+```
+
+To run server:
+
+```
+/usr/local/opt/httpd/bin/httpd -D FOREGROUND
+```