mirror of
https://github.com/kevinveenbirkenbach/computer-playbook.git
synced 2025-04-01 23:04:15 +02:00
32 lines
799 B
Markdown
32 lines
799 B
Markdown
# Administration
|
|
|
|
## View Logs
|
|
To check the latest logs of Akaunting.
|
|
```bash
|
|
docker-compose exec -it akaunting tail -n 300 storage/logs/laravel.log
|
|
```
|
|
|
|
## Access Containers
|
|
- Akaunting Container: `docker-compose exec -it akaunting bash`
|
|
- Database Container: `docker-compose exec -it akaunting-db /bin/mariadb -u admin --password=$akaunting_db_password akaunting`
|
|
|
|
## Manual Update
|
|
Execute PHP artisan commands in the following order for updating Akaunting:
|
|
|
|
```bash
|
|
php artisan about
|
|
php artisan cache:clear
|
|
php artisan view:clear
|
|
php artisan migrate:status
|
|
php artisan update:all
|
|
php artisan update:db
|
|
```
|
|
|
|
## Composer
|
|
To install Composer, a PHP dependency management tool:
|
|
|
|
```bash
|
|
curl https://getcomposer.org/download/2.4.1/composer.phar --output composer.phar
|
|
php composer.phar install
|
|
```
|