You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
745 B
29 lines
745 B
# PoKeMoNg
|
|
|
|
A Quarkus / MongoDB app for educational purposes.
|
|
|
|
Instructions [here](https://clientserveur-courses.clubinfo-clermont.fr/Notation.html)
|
|
|
|
## Prep steps
|
|
|
|
### 🔐 Database connection
|
|
|
|
Note that the DB connection properties are not included -- you should see this
|
|
in `src/main/resources/application.properties` :
|
|
|
|
```yml
|
|
quarkus.mongodb.connection-string=mongodb+srv://<username>:<password>@<cluster>.<node>.mongodb.net
|
|
quarkus.mongodb.database=<database>
|
|
```
|
|
|
|
To be able to use this app, enter the provided database secrets in the application properties file.
|
|
|
|
If none were provided, please request them.
|
|
|
|
## Running the application in dev mode
|
|
|
|
You can run the application in dev mode using:
|
|
|
|
```shell script
|
|
./gradlew quarkusDev
|
|
``` |