-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathreadma.config.ts
36 lines (36 loc) · 1.05 KB
/
readma.config.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
const name = 'templates';
const author = 'elcoosp';
const cargoGenerateLink = "[cargo generate](https://github.com/cargo-generate/cargo-generate)"
const config = {
language: 'ts',
title: 'Templates',
author,
githubUsername: author,
repoName: name,
xHandle: author,
domain: 'gmail',
email: author,
urls: {
doc: 'https://github.com/elcoosp/templates'
// doc: `https://${name}.vercel.app`,
},
repobeats: 'b6094745c34ee025ae4eeb67dc3c6406245ab2e5',
images: { logo: 'images/logo.png', screenshot: 'images/screenshot.gif' },
sections: {
projectDescription: 'Templates using cargo generate',
features: `
- Rslib monorepo member`,
about: `Monorepo of templates using ${cargoGenerateLink}`,
installation: 'See individual packages',
acknowledgments: '',
gettingStarted: `Pick a template that match your need and follow ${cargoGenerateLink}`,
roadmap: '',
usage: '',
},
template: {
bugReport: 'bug-report.yml',
featRequest: 'feature-request.yml',
},
backToTop: false,
} as const;
export default config;