# 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://:@..mongodb.net quarkus.mongodb.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 ```