Experiment to rebuild Diffuse using web applets.
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

at main 24 lines 489 B view raw
1import manifest from "../../../pages/input/s3/_manifest.json"; 2 3export const IDB_PREFIX = "@applets/input/s3"; 4export const IDB_BUCKETS = `${IDB_PREFIX}/buckets`; 5export const SCHEME = manifest.input_properties.scheme; 6 7export const ENCODINGS = { 8 "\+": "%2B", 9 "\!": "%21", 10 '\"': "%22", 11 "\#": "%23", 12 "\$": "%24", 13 "\&": "%26", 14 "'": "%27", 15 "\(": "%28", 16 "\)": "%29", 17 "\*": "%2A", 18 "\,": "%2C", 19 "\:": "%3A", 20 "\;": "%3B", 21 "\=": "%3D", 22 "\?": "%3F", 23 "\@": "%40", 24};