Last active
July 26, 2026 11:17
-
-
Save s8508235/9af5dce6b1f3be68e0298427f63667fe to your computer and use it in GitHub Desktop.
Run firefly-iii on windows
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| REM install node and npm | |
| REM see https://github.com/coreybutler/nvm-windows | |
| REM install php and composer | |
| REM see https://www.php.net/ and https://getcomposer.org/download/ and setup env var | |
| REM clone firefly-iii on github | |
| composer install | |
| composer update | |
| php artisan firefly-iii:verify-database-connection | |
| php artisan firefly-iii:upgrade-database | |
| php artisan firefly-iii:correct-database | |
| npm install | |
| REM build frontend | |
| cd resources\assets\v1 && npm install && npm run prod | |
| cd ..\v2 && npm install && npm run build | |
| cd ..\..\..\ | |
| php artisan serve |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment