https://github.com/ozankasikci/create-cursor-app
https://github.com/ozankasikci/create-cursor-app
Last synced: about 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/ozankasikci/create-cursor-app
- Owner: ozankasikci
- Created: 2025-01-04T07:27:15.000Z (5 months ago)
- Default Branch: main
- Last Pushed: 2025-01-06T22:55:14.000Z (5 months ago)
- Last Synced: 2025-03-25T19:44:27.745Z (2 months ago)
- Language: JavaScript
- Size: 26.4 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
Awesome Lists containing this project
README
# Create Cursor App
Create Cursor IDE projects with no configuration.
Quick Overview •
Creating an App •
Templates •Create Cursor App works on macOS, Windows, and Linux.
If something doesn't work, please [file an issue](https://github.com/ozankasikci/create-cursor-app/issues/new).## Quick Overview
```sh
npx create-cursor-app my-project
cd my-project
```Your new Cursor IDE project will be created with all the necessary configuration and documentation files.
## Creating an App
**You'll need to have Node.js 14.0.0 or later version on your local development machine**. We recommend using the latest LTS version.
### npx
```sh
npx create-cursor-app my-project
```### npm
```sh
npm init cursor-app my-project
```### Yarn
```sh
yarn create cursor-app my-project
```It will create a directory called `my-project` inside the current folder with the following structure:
```
my-project
├── PROMPT.md
├── CHANGELOG.md
├── PROJECT_SCOPE.md
├── .cursorrules
└── [template specific files]
```## Templates
The following templates are available:
- `basic` - A basic template with essential Cursor IDE configuration
- More templates coming soon...## License
Create Cursor App is open source software [licensed as MIT](https://github.com/ozankasikci/create-cursor-app/blob/main/LICENSE).