Create Project
Quick Start
copper create github.com/yourname/myapp
cd myapp
copper run -watchOptions
copper create -frontend=<option> -storage=<option> github.com/yourname/app-frontend
-storage
Last updated
Create your first Copper project
copper create github.com/yourname/myapp
cd myapp
copper run -watchCreates a full-stack app with React and PostgreSQL at http://localhost:5901
Customize your project template with -frontend and -storage flags:
copper create -frontend=<option> -storage=<option> github.com/yourname/appinertia:react (default) - React with Inertia.js
none - API-only, no frontend
postgres (default) - PostgreSQL database
sqlite3 - SQLite database
mysql - MySQL database
none - No database
Last updated