CLI starter kit for creating a new Baseplate project
npm install @baseplate-dev/create-projectThe Create Baseplate package provides a straightforward method for initiating a new Baseplate project, automatically generating all necessary files within your project directory. Baseplate is a full-stack application generator, laying the groundwork for scalable and maintainable development.
> ⚠️ WARNING: PRE-RELEASE VERSION
>
> This project is still in early development. While it's now open source and available for experimentation, it's not yet ready for production use. The API and features may change significantly before the stable release.
To start a new Baseplate project, execute the following command in your terminal:
``bash`
pnpm dlx @baseplate-dev/create-project [directory]
This command will set up a new Baseplate project in the specified directory. If no directory name is provided, the project will be established in the current directory. After the project setup is complete, navigate to the project directory to begin development on your new Baseplate application using pnpm baseplate serve.
To run the project in development mode, execute the following command in your terminal:
`bash`
pnpm dev:start [directory]
Note: The directory argument is optional and will default to the current directory if not provided.
You should use a directory outside the Baseplate folder to run the full install process otherwise it will create the directory within the create-project directory, e.g.
`bash``
pnpm dev:start ~/projects/test-app