Files
nextcloud-docs/developer_manual/app/startapp.rst
Joas Schilling 7ff44108af Update documentation to work without ncdev
Signed-off-by: Joas Schilling <coding@schilljs.com>
2016-10-17 16:32:11 +02:00

27 lines
782 B
ReStructuredText

=============
Create an app
=============
.. sectionauthor:: Bernhard Posselt <dev@bernhard-posselt.com>
After :doc:`you've set up the development environment <../general/devenv>` change into the Nextcloud apps directory::
cd /var/www/nextcloud/apps
Then create a skeleton app in the `app store <https://apps.nextcloud.com/developer/apps/generate>`_.
Enable the app
--------------
The app can now be enabled on the Nextcloud apps page
App architecture
----------------
The following directories have now been created:
* **appinfo/**: Contains app metadata and configuration
* **css/**: Contains the CSS
* **js/**: Contains the JavaScript files
* **lib/**: Contains the php class files of your app
* **templates/**: Contains the templates
* **tests/**: Contains the tests