- Application Web avec Angular qui intègre PostgreSQL.
- Angular web app integrating PostgreSQL.
- Charles De Lafontaine
- Geneviève Pelletier-Mc Duff
- Thierry Beaulieu
- Charles De Lafontaine: créateur de l'application web (front-end + backend), créateur du schéma de la base de données
- Geneviève Pelletier-Mc Duff: codage par les pairs, revue du code, du schéma et de la population de la BD
- Thierry Beaulieu: revue du schéma et de la population de la BD
- Charles De Lafontaine: creator of the web application (front-end + backend), creator of the database schema
- Geneviève Pelletier-Mc Duff: peer coding, review of the code, schema, and DB population
- Thierry Beaulieu: review of the schema, and DB population
- Assurez-vous d'avoir installé PostgreSQL (la version ~8.2 est utilisée pour ce projet).
- Assurez-vous d'avoir installé Node (la version ^16 est utilisée pour ce projet).
- Allez dans
/client
et lancez la commandenpm install
dans un terminal. - Allez dans
/server
et lancez la commandenpm install
dans un terminal. - Allez dans
/server/app/services/database.service.ts
et modifiezconnectionConfig
avec les bons paramètres de votre BD. - Allez dans
/server
et faites la commandenpm start
dans un terminal. Le serveur est lancé aulocalhost:3000
par défaut. - Allez dans
/client
et faites la commandenpm start
dans un terminal. Le client est lancé aulocalhost:4200
par défaut.
- Be sure to have PostgreSQL installed (version ~8.2 is used for this project).
- Be sure to have Node installed (version ^16 is used for this project).
- Go to
/client
and typenpm install
in a terminal. - Go to
/server
and typenpm install
in a terminal. - Go to
/server/app/services/database.service.ts
, and modifyconnectionConfig
with your database settings. - Go to
/server
and typenpm start
in a terminal. Server is active onlocalhost:3000
by default. - Go to
/client
and typenpm start
in a terminal. Client is active onlocalhost:4200
by default.