forked from sinamics/uavcast-community
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
file structure & re-factored dockerfile
- Loading branch information
Showing
30 changed files
with
131 additions
and
169 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Empty file.
Empty file.
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,8 @@ | ||
#!/usr/bin/env bash | ||
set -e | ||
# set -e | ||
|
||
# Make sure we set the webport stored in the database, if user uses another port than standard 80 | ||
/app/uavcast/bin/build/uav_main -p >> waitforit.txt | ||
|
||
exec "$@" | ||
|
||
exec "$@" |
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,10 @@ | ||
#!/bin/bash | ||
#!/usr/bin/env bash | ||
# ---------------------------------------------------------------- | ||
# UAVcast installation file. | ||
# Author Bernt Christian Egeland | ||
# | ||
# !Production specific addons | ||
# ---------------------------------------------------------------- | ||
|
||
# Set folders | ||
APPROOT="/app/uavcast" | ||
|
||
|
||
|
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
REACT_APP_UAVCAST_VER="5.0.0-dev-1" | ||
REACT_APP_UAVCAST_VER="5.0.0-dev2" |
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
[Unit] | ||
Description=MAVLink Router | ||
[Service] | ||
Type=simple | ||
ExecStart=/app/uavcast/bin/mavlink/mavlink-routerd | ||
StandardOutput=journal+console | ||
StandardError=inherit | ||
Restart=on-failure | ||
RestartSec=5 | ||
[Install] | ||
WantedBy=multi-user.target |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
[Unit] | ||
Description=uavcast-camera controller | ||
Requires=network-online.target | ||
Wants=network-online.target | ||
After=network-online.target | ||
[Service] | ||
WorkingDirectory=/app/uavcast/bin/build | ||
Type=simple | ||
GuessMainPID=no | ||
ExecStart=/app/uavcast/bin/build/uav_camera -start | ||
KillMode=control-group | ||
SyslogIdentifier=uavcast-camera | ||
StandardOutput=journal+console | ||
StandardError=inherit | ||
[Install] | ||
WantedBy=multi-user.target |
Oops, something went wrong.