The template codebase is now located within the Redwood Framework Repository:
https://github.com/redwoodjs/redwood/tree/main/packages/create-redwood-app/template
👉 "This is not the Repo you are looking for" ...most likely. If your goal is to start building an app using RedwoodJS, you'll want to read through the Tutorial and get started from the command line: $
yarn create redwood-app <directory-name>
This repo is a template used by the RedwoodJS app bootstrap package 'Create Redwood App', which is located at redwood/packages/create-redwood-app/
. If you're looking to do things like contributing to RedwoodJS development or reference Redwood's full-stack building blocks, then you're in the right place!🌲🎉
To ensure yarn.lock
is in sync with latest @redwoodjs packages, follow these steps:
- confirm your local branch is up to date with
main
, then rungit clean -fxd
- update root, web/, and api/
package.json
to latest @redwoodjs package version - run
yarn
- Commit all changes including
yarn.lock
- Create new release
Before you begin, please read the RedwoodJS Contributor Covenant Code of Conduct
Most likely, you'll need to set up a development environment linked to packages from a local clone of redwoodjs/redwood/packages
. This doc will help get you started:
Contributing to RedwoodJS