This repository serves as a static API to access all the wallpapers that can be seen in the WallStreet app. I would love to see your favourite wallpapers being added here!
Important
Please read the below pointers before proceeding with contributions.
🔹Contributed wallpapers should not be from any copyright sources.
🔹Try not to spam the pull request, instead dump all your collection at once or squash the commits
🔹Submission of images with obscenity, political or controversial content will be banished immediately.
- Fork this repository and clone it in your machine. Make sure you have latest commits.
- Add your images into
wallpapersfolder (Make sure not to have duplicate naming) - Portrait images (specifically for mobile) needs to be added inside
mobile/thumbnail/directory, landscape images (for desktop) needs to be added insidedesktop/thumbnail - Add a new individual JSON object block for every wallpaper you add at the end of
wallstreet_walls.json,
Here's the JSON Schema to follow
{
"category": "#categoryName",
"imageUrl": "https://raw.githubusercontent.com/StarkDroid/WallStreet-API/main/wallpapers/your_wallpaper_name.png",
"thumbnailUrl": "<base_url>/desktop (or) mobile/thumbnail/<file_name>.png"
}
Important
The App is capable of handing formats like JPG, PNG and PNG
Note
The wallpapers added here are all sourced from various external sources, I do not claim any of the images posted here Neither do I ever plan to profit out of it, hence its all open source and the app is free
- Once done
git add . && git commit -m "Add your desired commit message" && git push origin gh-pages. - Then finally head to git and make a pull request to the original
WallStreet-APIrepository.