Create Your App
-
First you need to create your app. Go to the Quip Developer Console and click "Create a Live App".
-
Make note of your app ID.
-
Run
create-quip-app my-app
in your terminal. This will create a directory calledmy-app
inside the current folder. Inside that directory, it will generate the initial project structure:my-app
├── package.json
├── node_modules
├── webpack.config.js
├── app
│ └── manifest.json
└── src
└── App.less
└── App.jsx
└── root.jsx -
Run
cd my-app
in your terminal. -
Open the file
app/manifest.json
in your editor. -
Paste in your app ID.
-
Give your app the name Hello World.
noteThis is what users will see as the title of your app and the key they'll use to insert your app into their documents.
-
Save your changes to the app/manifest.json file.
Your app is now ready for deployment!