flightphp / flastro
🚀 Flastro is a quick and easy Astro starter template with a FlightPHP backend 💻🌐✨
Installs: 0
Dependents: 0
Suggesters: 0
Security: 0
Stars: 1
Watchers: 2
Forks: 0
Open Issues: 0
Language:Astro
Type:project
Requires
- php: >=7.4
- flightphp/core: ^3.13
- symfony/dotenv: ^7.2
Requires (Dev)
- symfony/var-dumper: ^7.2
README
Flastro is a quick and easy Astro starter template with a FlightPHP backend. This template allows you to kickstart web application development using Astro on the frontend and FlightPHP on the backend. 🚀 Start building your web projects swiftly and efficiently with Flastro! 💻🌐✨
Learn Flastro stack:
Requirements
- NodeJS >= 18
- PHP >= 7.4
- Composer >= 2
Installation
Using composer
composer create-project flightphp/flastro <my-project> cd <my-project> npm install composer install npm run dev
Using git
Clone this repo running:
git clone https://github.com/flightphp/flastro <my-project> cd <my-project> npm install composer install npm run dev
If you don't want to keep git template history you can delete .git folder
rm .git -rf # linux/mac/windows git bash RD /Q /S .git # windows
Or you can skip all this and use next method 👇🏽
Using degit
npx degit flightphp/flastro <my-project> cd <my-project> npm install composer install npm run dev