Skip to content
Snippets Groups Projects
Commit 58a852c0 authored by Marcus Schiesser's avatar Marcus Schiesser
Browse files

fix: only use community path for community templates

parent cdc8422c
No related branches found
No related tags found
No related merge requests found
......@@ -326,7 +326,7 @@ export const installTemplate = async (
) => {
process.chdir(props.root);
if (props.communityProjectPath) {
if (props.template === "community" && props.communityProjectPath) {
await installCommunityProject(props);
return;
}
......
import { PackageManager } from "../helpers/get-pkg-manager";
export type TemplateType = "simple" | "streaming";
export type TemplateType = "simple" | "streaming" | "community";
export type TemplateFramework = "nextjs" | "express" | "fastapi";
export type TemplateEngine = "simple" | "context";
export type TemplateUI = "html" | "shadcn";
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment