Add POI feature and imporve the overall backend implementation

This commit is contained in:
Urtzi Alfaro
2025-11-12 15:34:10 +01:00
parent e8096cd979
commit 5783c7ed05
173 changed files with 16862 additions and 9078 deletions

View File

@@ -91,6 +91,34 @@ For production deployment on clouding.io with Kubernetes:
3. Make your changes
4. Submit a pull request
## 🔧 Troubleshooting
### macOS "too many open files" error
If you encounter the "too many open files" error when running the application on macOS:
```
failed to create fsnotify watcher: too many open files
```
This is related to system limits on file system watchers. The kind configuration has been updated to handle this, but if you still encounter issues:
1. Restart your Kind cluster with the updated configuration:
```bash
kind delete cluster --name bakery-ia-local
kind create cluster --config kind-config.yaml --name bakery-ia-local
```
2. If needed, you can also increase the macOS system limits (though this shouldn't be necessary with the updated kind configuration):
```bash
# Check current limits
sysctl kern.maxfiles kern.maxfilesperproc
# These are usually set high enough by default, but if needed:
# sudo sysctl -w kern.maxfiles=65536
# sudo sysctl -w kern.maxfilesperproc=65536
```
## 📄 License
This project is licensed under the MIT License.