Built with
This pulls satellite data from SpaceTrack.org
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
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