Base api connection requirements and models

This commit is contained in:
Marta Borgia Leiva 2026-02-09 20:13:12 +01:00
parent 9ab0505ed4
commit 2cf0856db5
Signed by: a-mayb3
GPG key ID: 293AAC4FED165CE3
7 changed files with 226 additions and 0 deletions

View file

@ -0,0 +1,8 @@
/**
* Environment configuration
* Update these values based on your environment (development, production, etc.)
*/
export const environment = {
production: false,
apiBaseUrl: 'http://localhost:8000',
};