You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
filepizza/src/config.ts

29 lines
452 B
TypeScript

import toppings from './toppings'
export default {
redisURL: 'redis://localhost:6379/0',
channel: {
ttl: 60 * 60, // 1 hour
},
bodyKeys: {
uploaderPeerID: {
min: 3,
max: 256,
},
slug: {
min: 3,
max: 256,
},
},
shortSlug: {
numChars: 8,
chars: '0123456789abcdefghijklmnopqrstuvwxyz',
maxAttempts: 8,
},
longSlug: {
numWords: 4,
words: toppings,
maxAttempts: 8,
},
}