@vergaraaa/create-parse-app
v1.0.4
Published
Scaffold a new Parse Server project from the vergaraaa template
Maintainers
Readme
create-parse-app
Scaffold a new Parse Server project from the vergaraaa template in seconds.
npx @vergaraaa/create-parse-app my-new-appOr without a name (the CLI will prompt you):
npx @vergaraaa/create-parse-appWhat it does
- Clones
vergaraaa/parse-server-templateinto a new local folder - Prompts you for:
- App display name (used as
APP_NAMEin.env) - Back4App app name (exact name from your dashboard)
- Back4App App ID (from Security & Keys settings)
- App display name (used as
- Patches your new project:
docker-compose.yml— renames all services and containers with your app prefix.env— setsAPP_NAMEand the correctDATABASE_URIhostnamepackage.json— sets the"name"fielddeploy.sh— replaces<YOUR_APP_NAME>,<YOUR_APP_ID>placeholders abd<YOUR_EMAIL>
- Removes template-only files (
wiki.md,setup.js) - Initialises a fresh git repo with an initial commit
After scaffolding
cd my-new-app
docker compose up --build # first run
docker compose up # subsequent runsWhen you're ready to deploy:
./deploy.sh
# Then run dbMigrate from the Back4App API ConsoleRequirements
- Node.js 18+
- Git installed and available in PATH
- Docker (for local development)
