finance icon indicating copy to clipboard operation
finance copied to clipboard

Improve the documentation!

Open austinkregel opened this issue 3 years ago • 2 comments

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

austinkregel avatar Aug 19 '20 01:08 austinkregel

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

Is such kind of doku improvement welcome?

bernhardh avatar Nov 06 '20 21:11 bernhardh

Yes! Any kind of documentation improvements are welcome!

austinkregel avatar Nov 10 '20 07:11 austinkregel