On this page
article
Contributing
If you’re new to Masonite I suggest you to first read the Official Documentation. Masonite strives to have extremely comprehensive documentation 😃. It would be wise to go through the tutorials there.
Have questions or want to talk? Be sure to join the Masonite Discord Community.
Develop instructions
To test the project locally, you just need to clone the repository and configure a basic .env just like any masonite project.
git clone https://github.com/usecollapsar/collapsar
Install dependencies
python -m venv venv
source venv/bin/activate
python -m pip install -r requirements.txt
Create a simple .env
cp .env-example .env
Run migrations
python craft migrate
Build assets
npm install
npx vite build
Run the app
python craft serve
Visit http://localhost:8000/collapsar and you should see the dashboard and the User resource.