Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/brianpunzalan/fligno
Sample App for Fligno
https://github.com/brianpunzalan/fligno
Last synced: 11 days ago
JSON representation
Sample App for Fligno
- Host: GitHub
- URL: https://github.com/brianpunzalan/fligno
- Owner: brianpunzalan
- Created: 2019-06-05T15:20:18.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2023-01-03T23:36:30.000Z (almost 2 years ago)
- Last Synced: 2024-03-18T19:11:59.963Z (8 months ago)
- Language: PHP
- Size: 1.7 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 11
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Fligno App
Simple Web Application built with Laravel + React.
## Get Started
To start the containers, enter the following:
> option `-d` to run in backgroundFor Dev
```
docker-compose -f dev-docker-compose.yml up -d
```For Prod
```
docker-compose -f prod-docker-compose.yml up -d
```To stop the containers, enter the following
```
docker-compose -f down
```If you have changed the Dockerfiles on one of the services, please rebuild the images with the following command:
```
docker-compose build
```To execute commands on the server, enter the following
```
docker run -it --rm fligno_server
```
Example:
```
docker run -it --rm fligno_server php artisan list
```To start development initially, please start the apache2 server, migrate and seed the database
```
docker exec -it fligno_server php artisan migrate:fresh
docker exec -it fligno_server php artisan db:seed
```
If the storage folder was still not linked to public folder, enter the following (this is to show images)
```
docker exec -it fligno_server php artisan storage:link
```### Note
Please use sample `.env.example` on fligno_server container. Also please check the following links belowphpmyadmin: localhost:8888
username: root
password: test123
fligno_admin: localhost:8080
email: [email protected]
password: test123
fligno_server: localhost:9090
email: [email protected]
password: test123