mirror of
https://github.com/Aviortheking/CA_LARAVEL.git
synced 2025-04-22 19:02:11 +00:00
31 lines
624 B
Markdown
Executable File
31 lines
624 B
Markdown
Executable File
# Pouet
|
|
|
|
## Maintainers
|
|
|
|
[Florian BOUILLON](https://github.com/Aviortheking)
|
|
[Nicolas BROSSARD](https://github.com/Nicolas-Brossard)
|
|
[Théo MEMIN](https://github.com/jenoh)
|
|
[Maxime SORIN](https://github.com/s0dyy)
|
|
|
|
## Install
|
|
|
|
### Dev
|
|
|
|
```
|
|
docker-compose build
|
|
cp ./.env.example ./.env
|
|
docker-compose run php composer install
|
|
docker-compose run php php artisan key:generate
|
|
docker-compose up
|
|
```
|
|
|
|
|
|
### Prod
|
|
|
|
```
|
|
cp ./env.example ./env
|
|
docker-compose build
|
|
docker-compose run -f docker-compose.yml -f docker-compose.prod.yml php php artisan key:generate
|
|
docker-compose up -f docker-compose.yml -f docker-compose.prod.yml
|
|
```
|