@aws-gcr-solution-construct/solution-docs
TypeScript icon, indicating that this package has built-in type declarations

0.1.1 • Public • Published

Solution-docs

This package creates a sample solution documentation structures.

Getting started

To create a new solution documentation project, there are a couple of options:

Standalone doc project

npx projen new --from @aws-gcr-solution-construct/solution-docs

Part of other project

eg: as part of a nx_monorepo project

Step1. Create a nx-monorepo project

npx projen new --from aws-prototyping-sdk nx-monorepo

Step2. Update .projenrc.ts

import { nx_monorepo } from "aws-prototyping-sdk";
import { SolutionDocsProject } from "@aws-gcr-solution-construct/solution-docs";

const project = new nx_monorepo.NxMonorepoProject({
  defaultReleaseBranch: "main",
  devDeps: ["aws-prototyping-sdk", "@aws-gcr-solution-construct/solution-docs"],
  name: "demo-solution",

  // deps: [],                /* Runtime dependencies of this module. */
  // description: undefined,  /* The description is just a string that helps people understand the purpose of the package. */
  // packageName: undefined,  /* The "name" in package.json. */
});

new SolutionDocsProject({
  name: `demo-solution-docs`,
  parent: project,
  outdir: "docs",
});

project.synth();

Step3. Running your synthesized Application

To run your synthesized application locally, run npx projen.

Readme

Keywords

none

Package Sidebar

Install

npm i @aws-gcr-solution-construct/solution-docs

Weekly Downloads

8

Version

0.1.1

License

Apache-2.0

Unpacked Size

49.4 kB

Total Files

59

Last publish

Collaborators

  • wanghd89