KouroshKSH / Java-GitHub-Explorer

The Java GitHub Explorer is an Android mobile application designed to help users in discovering and exploring top projects on GitHub using Java.
MIT License
0 stars 1 forks source link

Temp Data for Database #3

Closed KouroshKSH closed 9 months ago

KouroshKSH commented 9 months ago

Insert some data into mongo for testing purposes. For now, the template is (with an example):

{
    "_id": ObjectId('...'),
    "repoName": "RandomRepo",
    "repoStars": 300,
    "creationDate": new Date("2022-10-09"),
    "description": "This project aims to ...",
}
KouroshKSH commented 9 months ago

decided to go with such a structure:

{
    "title": "something",
    "stars": 10,
    "url": "https://..."
}