Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Refactor database logic and update Docker configurations #43

Merged
merged 4 commits into from
Nov 10, 2024
Merged
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
3 changes: 1 addition & 2 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,7 @@

### Composer ###
composer.phar
#! EDITED ↓
/src/vendor/
/vendor/

# Commit your application's lock file https://getcomposer.org/doc/01-basic-usage.md#commit-your-composer-lock-file-to-version-control
# You may choose to ignore a library lock file http://getcomposer.org/doc/02-libraries.md#lock-file
Expand Down
55 changes: 0 additions & 55 deletions .vscode/launch.json

This file was deleted.

2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ Aplicatiu web per a la gestió del manteniment d'arbrat urbà i periurbà.
2. **Arrencar l'entorn amb Docker:**
Un cop les dependències estiguin instal·lades, pots arrencar l'entorn de desenvolupament utilitzant Docker. Executa el següent comandament:
```bash
docker compose up
docker-compose up --build --watch --remove-orphans
```

Això crearà els contenidors necessaris per al projecte i posarà en marxa l'aplicació.
Expand Down
9 changes: 4 additions & 5 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,16 +4,15 @@
"type": "project",
"autoload": {
"psr-4": {
"App\\": "src/app"
"App\\": "app/"
}
},
"config": {
"vendor-dir": "src/vendor"
},
"authors": [
{
"name": "DAW Ies Montsià"
}
],
"require": {}
"require-dev": {
"phpunit/phpunit": "^11.4"
}
}
Loading