Based on Laravel framework.
Contributors of the project:
Web available on: https://tfg-project-azgqiphvra-no.a.run.app/
The project must be mounted using docker:
- Start docker daemon.
- Run your docker machine:
docker-compose up -d
- Enter to the docker machine:
docker compose exec -it app sh
- From inside the machine:
- Run:
composer install
- Run:
cp .env.example .env
- Run:
php artisan key:generate
- Run:
php artisan migrate
- Run:
- Web running on http://localhost:8000/admin/feature-flags
- As database we use MySQL:
- Database name: laravel-docker
- Database user: master
- Database password: secret
- To stop de container:
docker-compose stop
- From outside the machine:
- MacOS / Linux:
- Run:
ln -s ../../git_hooks/pre-commit .git/hooks
- Run:
- MacOS / Linux:
- Commit syntax:
git commit -m "#<issue number here> - <your commit here>"
- Create one branch for each issue:
git checkout -b feature\<issue number here>-<branch name here>
- If you want to merge your work with the develop branch open a pull request.
- When an issue is closed:
#<issue number here> - <your commit here>
:)