Skip to content

Commit

Permalink
Merge pull request #2 from acadevmy/feat/git-commit
Browse files Browse the repository at this point in the history
Feat/git commit
  • Loading branch information
KernelPanic92 authored May 30, 2024
2 parents dcd8d48 + 216e0dc commit 5fa076d
Show file tree
Hide file tree
Showing 19 changed files with 624 additions and 456 deletions.
15 changes: 8 additions & 7 deletions lib/cli_brick_configurations.dart
Original file line number Diff line number Diff line change
@@ -1,21 +1,22 @@
import 'package:devmy_cli/src/models/new_definition.dart';
import 'package:mason/mason.dart';

import 'package:devmy_cli/src/devmy_cli.dart';

final cliConfiguration = CliConfiguration(
new$: NewCommand(
new$: NewCommandDefinition(
brick: GitPath('https://github.com/acadevmy/scaffold-brick'),
description: 'Easily create a Devmy scaffold masterpiece',
),
applications: [
ApplicationCommand(
ApplicationCommandDefinition(
name: 'angular',
brick: GitPath('https://github.com/acadevmy/angular-application-brick'),
description:
'Generate a fully-equipped Angular project in your workspace',
aliases: ['ng'],
),
ApplicationCommand(
ApplicationCommandDefinition(
name: 'nextjs',
brick: GitPath('https://github.com/acadevmy/next-application-brick'),
description: 'Generate a fully-equipped Nextjs project in your workspace',
Expand All @@ -35,26 +36,26 @@ final cliConfiguration = CliConfiguration(
],
aliases: ['next'],
),
ApplicationCommand(
ApplicationCommandDefinition(
name: "directus",
brick: GitPath("https://github.com/acadevmy/directus-application-brick"),
description:
"Generate a fully-equipped Directus project in your workspace",
),
ApplicationCommand(
ApplicationCommandDefinition(
name: "nestjs",
brick: GitPath("https://github.com/acadevmy/nestjs-application-brick"),
description:
"Generate a fully-equipped NestJS project in your workspace",
aliases: ['nest']),
],
addons: [
AddonCommand(
AddonCommandDefinition(
name: 'next/zustand',
brick: GitPath("https://github.com/acadevmy/next-zustand-addon-brick"),
description: "Integrating Zustand with Next.js",
),
AddonCommand(
AddonCommandDefinition(
name: 'next/shadcnui',
brick: GitPath("https://github.com/acadevmy/next-shacnui-addon-brick"),
description: "Customizable UI for Next.js with ShadcnUI.",
Expand Down
Loading

0 comments on commit 5fa076d

Please sign in to comment.