You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I've noticed that the "documentation" is totally not helpful for someone who would be new to this project (for contributing and just pulling it down and setting it up).
Not sure, where to place it elsewhere, but here is a short documentation to install and run it without docker:
# Clone finance and jump into the folder
git clone [email protected]:austinkregel/finance.git
cd finance
# Install dependencies
composer install
npm install
# Configure environment
cp .env.example .env
# Edit .env file to your needs# Create storage link + generate key
php artisan storage:link
php artisan key:generate
# Run database installation
php artisan migrate
# Run css/js compilation
npm run prod
# And now run the testserver
php artisan serve
I've noticed that the "documentation" is totally not helpful for someone who would be new to this project (for contributing and just pulling it down and setting it up).
The text was updated successfully, but these errors were encountered: