Skip to content

Latest commit

 

History

History
42 lines (26 loc) · 1.14 KB

README.md

File metadata and controls

42 lines (26 loc) · 1.14 KB

Starlink Satellite Tracker

Demo

Built with

Laravel Logo

Starlink Satellite Tracker

This pulls satellite data from SpaceTrack.org

Quick Start

If you don't want to install php, I've included a Docker compose file that will download php, composer, then automatically start the dev server.

docker compose up

Then all you'll need to do is run either:

npm run dev

or if you like yarn:

yarn run dev

Normal Laravel Flow

Install packages (I like yarn)
yarn or npm install

Install php packages via composer
composer install

Run the db migrations:
php artisan migrate

Run the db seeder to seed the default satellite positions php artisan db:seed

Start the php server
php artisan serve

Start the Vite dev server
yarn run dev