- norkconfig se generuje lepe a actually ho pouzivam
 - pri vytvareni projektu je mozne vybrat si orm (mongoose & sequlize)
 - default modely pro db se kopiruji na zaklade parametru db z norkconfigu
 - updatnutej ts skeleton
 - dropnul jsem support pro js
This commit is contained in:
2022-07-30 22:28:06 +02:00
parent 3b85bad8a7
commit d8b859850e
27 changed files with 507 additions and 196 deletions

View File

@@ -1,5 +1,13 @@
interface database {
db: string
orm: string
}
export interface Create {
project_name: string
author: string
lang: string
database: database
email: string
website: string
}