Your achievements

Level 1

0% to

Level 2

Tip /
Sign in

Sign in to Community

to gain points, level up, and earn exciting badges like the new
Bedrock Mission!

Learn more

View all

Sign in to view all badges

dr_venture
dr_venture
Online

Badges

Badges
16

Accepted Solutions

Accepted Solutions
12

Likes Received

Likes Received
33

Posts

Posts
76

Discussions

Discussions
4

Questions

Questions
72

Ideas

Ideas
0

Blog Posts

Blog Posts
0
Top badges earned by dr_venture
Customize the badges you want to showcase on your profile
Re: TypeScript support for app builder - App Builder 09-06-2022
Yes, it does support TypeScript. For serverless actions, you make a new source directory then put your typescript output folder to be the actions folder. https://github.com/AdobeDocs/adobeio-samples-typescript

Views

115

Like

1

Replies

0
Re: Custom webpack configure - App Builder 19-05-2022
Very good point...I do not know the answer off hand but one good thing is that its all open source adobe/aio-cli-plugin-app: Create, Build and Deploy Cloud Native Applications (github.com) CLI root project adobe/aio-cli: Adobe I/O Extensible CLI (github.com) That is a good place to look to figure out how it works and see if there is a way to override. If its not possible to override you could fork the app plugin and make your own version of it that does what you need it to. Way more work than a ...

Views

199

Likes

0

Replies

1
Re: Custom webpack configure - App Builder 18-05-2022
I found this https://github.com/purplecabbage/firefly-custom-webpack Jesse is one of the masterminds behind app builder so I am assuming it works. I have not tried.

Views

209

Likes

0

Replies

3
Re: store data : Database App Builder - App Builder 18-05-2022
You have two built-in options for Data and then you could also bring your own db into the mix if needed.The two built-in options are accessed via the State and File libraries. State is a key value store meant for short term data storage. keys inserted have a limited time before they are flushed from the store. You can tune this time by setting the TTL value. If you set the TTL value to -1 it will last forever. File allows you to store files. You can use this to either many data files or a single...

Views

115

Like

1

Replies

0
Re: SSL Certificates for Headfull apps & Persistent storage for Headless App - App Builder 07-04-2022
correctit will exist until removed

Views

142

Like

1

Replies

0
Re: SSL Certificates for Headfull apps & Persistent storage for Headless App - App Builder 07-04-2022
The keys are for the service accounts you have bound to your project. They expire and need to be rotated to ensure the security of the service account. It is not technically an App Builder thing but more a general Adobe auth service account general rule. I don't really know the history behind the key rotation and expiring interval. It has nothing to do with SSL connection to a microservice you host. Its 100% the service technical account that the emails are related too. They fill my inbox too. B...

Views

149

Likes

0

Replies

3
Re: is there a cost associated with project firefly - App Builder 23-03-2022
I know that if you own AEM you can buy it as an add-on by contacting your sales representative. Bundling with other Adobe products is work that is ongoing and I don't know the current status of that. From what I know the "trial" will continue as we sort out all the product bundling skus. I have asked that others that are more informed chime in on this thread.

Views

173

Likes

0

Replies

1
Re: Error The path argument must be of type string - Headless app - App Builder 22-03-2022
Indentation on the config files can be tricky to see.  

Views

282

Like

1

Replies

0
Re: is there a cost associated with project firefly - App Builder 22-03-2022
Firefly went GA in the last half of 2021. It is now known as AEM App Builder.I have sent your post forward to someone that I hope can point you in the right direction for entitlement.

Views

185

Likes

0

Replies

3
Re: Error The path argument must be of type string - Headless app - App Builder 22-03-2022
I can see your issue. that yaml config file is space sensitive your package is sourceConnectorDSIt has Actions, Triggers, and Rulesall three are TOP level package items so they need to be at the same indentation levelsourceConnectorDS actions:... rules:... triggers:... Above you have rules and triggers as sub-properties of actions so it thinks they are action definitions. Does that make sense for you?

Views

286

Likes

2

Replies

2