Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Pipeline updates (allows configuration variables in place of static values) and documentation #53

Merged
merged 5 commits into from
May 13, 2023
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
Prev Previous commit
Updates
  • Loading branch information
meadej committed Apr 24, 2023
commit 714ce84e1024410eedb711410d0aa321562e8017
28 changes: 15 additions & 13 deletions install-skyscan.sh
Original file line number Diff line number Diff line change
Expand Up @@ -7,25 +7,27 @@ echo "Installing skyscan on ${HOSTNAME} at $(pwd)"
echo "Configuring Mobian base"
bash <(curl -fsSL https://short.iqt.org/pinephonepro)


mkdir skyscan
cd skyscan
mkdir data
cd data
curl -O https://opensky-network.org/datasets/metadata/aircraftDatabase.csv
cd ..

# Make necessary folders
mkdir /flash
mkdir /flash/raw
mkdir /flash/coral
mkdir /flash/coral/plane
mkdir /flash/coral/noplane
mkdir /flash/coral/log
mkdir /flash/weights
mkdir /flash/edge
mkdir /flash/edge/plane
mkdir /flash/edge/noplane
mkdir /flash/edge/log
mkdir /flash/processed
mkdir /flash/processed/log
mkdir raw
mkdir coral
mkdir coral/plane
mkdir coral/noplane
mkdir coral/log
mkdir weights
mkdir edge
mkdir edge/plane
mkdir edge/noplane
mkdir edge/log
mkdir processed
mkdir processed/log

curl -O $COMPOSE_FILE_URL
curl -O $ENV_FILE_URL
Expand Down