Package Exports
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (@baseplate-dev/create-project) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
Create Baseplate Project
The 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.
Private Beta Notice
Important: The Baseplate project is currently undergoing a private beta phase and is not yet available to the public. Access is available to authorized beta testers and internal team members. If you're interested in participating in the beta program, please reach out to us at Half Dome Labs for more details.
Creating a Project
To start a new Baseplate project, execute the following command in your terminal:
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.
Development
To run the project in development mode, execute the following command in your terminal:
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.
pnpm dev:start ~/projects/test-app