├── .gitignore ├── .github └── PULL_REQUEST_TEMPLATE.md └── README.md /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | npm-debug.log 3 | #Don't include app.min.css, as we need this for gh pages 4 | app/styles/app.css 5 | #app/styles/app.min.css 6 | -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- 1 | ## Description 2 | 3 | A few sentences describing the purpose of this pull request's commits. 4 | 5 | ## Issues Addressed 6 | 7 | A list of the issues the PR addresses: 8 | 9 | issue | 10 | ----- | 11 | [github.com/trello/api-docs/issues](github.com/trello/api-docs/issues) | 12 | [github.com/trello/api-docs/issues](github.com/trello/api-docs/issues) | 13 | 14 | ## Screenshots 15 | 16 | A screenshot of the changes. -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Trello's Developer and API Documentation Site 2 | 3 | 👋 Hey there, 4 | 5 | Trello's documentation and developer site can be found at [https://developer.atlassian.com/cloud/trello](https://developer.atlassian.com/cloud/trello). There you can find info on [building Power-Ups](https://developer.atlassian.com/cloud/trello/guides/power-ups/your-first-power-up/), [using the REST API](https://developer.atlassian.com/cloud/trello/guides/rest-api/api-introduction/), and much more! 🎉 6 | 7 | We no longer use this repository to manage nor host the documentation. You can use the "Give docs feedback" button throughout the developer site to suggest edits to any pages. 8 | 9 | ⁉️ Need help? Head over to the [Trello developer forum](https://community.developer.atlassian.com/c/trello) to ask a question out loud about the Trello API or Power-Ups platform. 10 | 11 | Sign up for the [Developer Newsletter ✉](http://trello.us9.list-manage.com/subscribe?u=5cb712992a906406c5eae28a7&id=1754ca72bf) to stay informed about the latest changes and announcements for developers. 12 | 13 | Looking for something old? Here's the [last commit](https://github.com/trello/api-docs/commit/b82e22044993924853f82709f06d67bc3b3863a2) prior to the docs moving. 14 | --------------------------------------------------------------------------------