Skip to content

Commit ad9c4e6

Browse files
committed
Added marketplace.json and images
1 parent 0fa056c commit ad9c4e6

File tree

5 files changed

+29
-1
lines changed

5 files changed

+29
-1
lines changed

README.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,4 +60,9 @@ To get the application logs:
6060

6161
`az spring-cloud app logs -n acrebankapp -g rdsLroAcre -s acrebank`
6262

63-
Note: project is compiled with JDK11 as that's currently the max LTS version that's supported by Azure Spring Cloud. Project will run fine when running locally or on other platforms up to JDK16.
63+
Note: project is compiled with JDK11 as that's currently the max LTS version that's supported by Azure Spring Cloud. Project will run fine when running locally or on other platforms up to JDK16.
64+
65+
## Known issues
66+
67+
1. Thread safety. Data is currently generated off of a single stream of transactions, which means it's the same for all users. Not a problem with the current iteration because it's single user, but beware when expanding this to multi-user.
68+
2. Hardcoded values. Code uses hardcoded values throughout the code, these need to be replaced with proper variables.

architecture.png

283 KB
Loading

marketplace.json

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
{
2+
"app_name": "RedisBank", //Name of the app
3+
"description": "Example of a realtime online retail banking application", // One line description
4+
"hidden": "true", // Can be "true" or "false". If true, this app won't show up in Launchpad.
5+
"rank": "21", // This is used to sort the apps in the launchpad. 1 to 20 are reserved. Enter greater than 20
6+
"type": "Full App", //Can be "Building Block" or "Full App"
7+
"contributed_by": "Redis", // Can be "Redis Labs" or "Community" or "Partner"
8+
"repo_url": "https://github.com/Redislabs-Solution-Architects/redisbank", //This is the Gitub Repo's URL.
9+
"download_url": "https://github.com/Redislabs-Solution-Architects/redisbank/archive/refs/heads/main.zip",//This is a direct link to the Github's download button so people can download it directly from the Marketplace
10+
"hosted_url": "", //The URL of the app. if you are hosting this app somewhere
11+
"quick_deploy": "", //"true" if the project has Heroku, Vercel, Google deploy buttons
12+
"deploy_buttons": [],//Deploy buttons for "heroku", "vercel" or "Google" in the form of objects.
13+
"language": ["Java", "JavaScript"], // Backend technologies: "JavaScript", "Java", "Python", "Go", "C#", "Ruby", "PHP", etc.
14+
"redis_commands": [], // Enter all the Redis commands
15+
"redis_features": ["caching","sorted sets"],// Enter any core Redis feature or leave it blank.
16+
"redis_modules": ["RediSearch", "RedisTimeSeries"], //Value can be one or more of "RediJSON", "", "RedisTimeseries", "RedisAI" "RedisGears" or "RedisGraph" listed in an array.
17+
"app_image_urls": [
18+
], // Provide any image urls in an array.
19+
"youtube_url": "", //Provide a Youtube link to your app's video
20+
"special_tags": [], // "Hackathon", "Paid", or any event names.
21+
"verticals": ["Financial"], // Can be: "Healthcare", "Financial", "Tourism", "Retail", "Oil & Gas", "Manufacturing", "Technology","Education", "Construction"
22+
"markdown": "https://github.com/Redislabs-Solution-Architects/redisbank/blob/main/README.md" // Link to the RAW Markdown.
23+
}

redisbank1.png

1 MB
Loading

redisbank2.png

333 KB
Loading

0 commit comments

Comments
 (0)