austinkregel / finance

A self hosted app to help you get a better understanding of your personal finances.
405 stars 47 forks source link

Improve the documentation! #33

Open austinkregel opened 4 years ago

austinkregel commented 4 years ago

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).

bernhardh commented 3 years ago

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 git@github.com: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

Is such kind of doku improvement welcome?

austinkregel commented 3 years ago

Yes! Any kind of documentation improvements are welcome!