25 lines
346 B
Markdown
25 lines
346 B
Markdown
# autopilot
|
|
|
|
Scheduling automation for East Coast Aero Club's flight scheduling software.
|
|
|
|
## Features
|
|
|
|
* Sync with Google calendar
|
|
* Automatically schedule desired flight
|
|
|
|
## Setup
|
|
|
|
```bash
|
|
pipenv install # install python deps
|
|
cp .env.example .env
|
|
$EDITOR .env # add your config
|
|
```
|
|
|
|
## Usage
|
|
|
|
```bash
|
|
source .env
|
|
python -m autopilot.app
|
|
```
|
|
|