Skip to content

Small MongoDB application with basic CRUD operations for something like notes

License

Notifications You must be signed in to change notification settings

pixelstuermer/littleNotes

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

46 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Build Status codebeat badge codecov License: MIT GitHub release

littleNotes

Small MongoDB application with basic CRUD operations for something like notes

SwaggerUI

The SwaggerUI for detailled API description can be found here:

{base-url}/swagger-ui.html

Config Variables

To connect to a MongoDB database, the following variable has to be set:

spring.data.mongodb.uri

For example like this:

spring.data.mongodb.uri=mongodb://user:password@domain:port/database

For connection to a (notes-) collection, the following variable has to be set:

collection.name

For example like this:

collection.name=notes

Further on, the following passwords can ge granted when launching the application:

admin.password={...}
user.password={...}
phil.password={...}