md-toy-blog
Version:
Very simple Markdown blog: serves your md as html without fancy databases. You will only spend time writing the actual data.
16 lines (13 loc) • 533 B
text/typescript
import AppPathResolverService from './../services/AppPathResolverService';
import { LoadDictElement } from 'di-why/build/src/DiContainer';
const loadDictElement: LoadDictElement<AppPathResolverService> = {
constructible: AppPathResolverService,
locateDeps: {
compiledUserContentDir: 'MTB_COMPILED_USER_CONTENT_DIR',
mdBlogPostsDir: 'MTB_MD_BLOG_POSTS_DIR',
staticFilesDir: 'MTB_STATIC_FILES_DIR',
pagesDir: 'MTB_PAGES_DIR',
viewTemplatesDir: 'MTB_VIEW_TEMPLATES_DIR',
}
};
export default loadDictElement;