Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -11,3 +11,4 @@ Homestead.yaml
npm-debug.log
yarn-error.log
.env
composer.lock
16 changes: 16 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,22 @@ REMS is a simple PHP script based on Laravel that helps you to manage small or m
08. `php artisan storage:link`
09. `php artisan serve`

### Docker installation (MYSQL Only)
01.
Edit `docker/.env-docker-mysql` for MYSQL DB docker environment variables.
You can set your own database user, user password and database name.
02.
Edit `docker/.env-docker-realestate` for you need.
If you will run it for first time all must be `yes`.
For subsequest runs you can set which one you neeed according to you DB status.
If any of them will be needed FIRSTRUN should alwasys be `yes`
03.
Use `docker/.env.example` as a source for your `.env` file of application
`./env.example` is not used in docker setup
Edit this file DB information according to what you have entered in `docker/.env-docker-mysql`
04.
Start application with `sudo docker-compose -f docker/docker-compose.yml up -d`

#### Cridentials
01.
Email: `admin@admin.com`
Expand Down
5 changes: 4 additions & 1 deletion composer.json
100755 → 100644
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,10 @@
"config": {
"preferred-install": "dist",
"sort-packages": true,
"optimize-autoloader": true
"optimize-autoloader": true,
"allow-plugins": {
"kylekatarnls/update-helper": true
}
},
"minimum-stability": "dev",
"prefer-stable": true
Expand Down
Loading