Quellcode durchsuchen

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

willpiper vor 4 Jahren
Ursprung
Commit
f68ebb70be
1 geänderte Dateien mit 34 neuen und 0 gelöschten Zeilen
  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
+```