Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ruymon/spotter
https://github.com/ruymon/spotter
Last synced: about 6 hours ago
JSON representation
- Host: GitHub
- URL: https://github.com/ruymon/spotter
- Owner: ruymon
- Created: 2023-10-07T13:59:21.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2023-12-28T14:21:43.000Z (about 1 year ago)
- Last Synced: 2023-12-28T15:33:00.206Z (about 1 year ago)
- Language: TypeScript
- Homepage: https://spotter-two.vercel.app
- Size: 1.03 MB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Spotter
A simple Next.js project to act as overlay for VATSIM live streams.# Features
- [ ] Display Event Name
- [ ] Display Current Time
- [ ] Display Current Date
- [ ] Display Current Zulu Time
- [ ] Display Current Local Time
- [ ] Display Location Metar and TAF (maybe ATIS)
- [ ] Display Current ATC
- [ ] Display Current ATC Frequency
- [ ] Let the user configure the overlay's color scheme
- [ ] Let the user configure the overlay's font
- [ ] Let the user configure the overlay's font size# Route Parameters
## Event details
- [ ] `?title=` - Sets the title of the overlay
- [ ] `?subtitle=` - Sets the subtitle of the overlay
- [ ] `?locationIcao` - Sets the current airport and fetches the METAR and TAF accordingly## Style and customization
- [ ] `?logo=` - Sets a custom logo for the overlay
- [ ] `?backgroundColor=` - Sets the color scheme of the overlay
- [ ] `?accentColor=` - Sets the accent color of the overlay
- [ ] `?textColor=` - Sets the font of the overlay## Display options
- [ ] `?hideInboundFlights=` - Hides the inbound flights
- [ ] `?hideOutboundFlights=` - Hides the outbound flights
- [ ] `?hideTime=` - Hides the time
- [ ] `?hideMetar=` - Hides the METAR## Running the project locally
First, install the dependencies:
```bash
npm install
# or
yarn
# or
pnpm
# or
bun
```
Then, run the development server:```bash
npm run dev
# or
yarn dev
# or
pnpm dev
# or
bun dev
```