<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: Daphne Muller</title>
    <description>The latest articles on DEV Community by Daphne Muller (@daphnemuller).</description>
    <link>https://dev.to/daphnemuller</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F1109810%2F4631a4b1-e375-4ed5-aeef-8a18249e0e1d.jpeg</url>
      <title>DEV Community: Daphne Muller</title>
      <link>https://dev.to/daphnemuller</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/daphnemuller"/>
    <language>en</language>
    <item>
      <title>Developing with Nextcloud - Part 2 - Developing your first app</title>
      <dc:creator>Daphne Muller</dc:creator>
      <pubDate>Wed, 05 Jul 2023 09:50:26 +0000</pubDate>
      <link>https://dev.to/daphnemuller/developing-with-nextcloud-part-2-developing-your-first-app-24h7</link>
      <guid>https://dev.to/daphnemuller/developing-with-nextcloud-part-2-developing-your-first-app-24h7</guid>
      <description>&lt;p&gt;&lt;em&gt;This is an ongoing series of articles about developing for Nextcloud. You can find part 1 about how to set up your development environment &lt;a href="https://dev.to/daphnemuller/developing-with-nextcloud-part-1-setting-up-for-development-677"&gt;here&lt;/a&gt;.&lt;/em&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  Who is Nextcloud?
&lt;/h2&gt;

&lt;p&gt;Nextcloud is a team of enthusiastic open source developers who love to create a fully open source content collaboration platform. We love our Nextcloud community and a lot of our drive comes from giving the people what they need, and a lot of the PR's and apps come from our community and they develop brilliant things. 😉&lt;/p&gt;

&lt;p&gt;We also make sure that Nextcloud works on any scale of use, from a Raspberry Pi as well as on a Galera Cluster, so everyone can benefit from the project.&lt;/p&gt;

&lt;h2&gt;
  
  
  Why develop with Nextcloud?
&lt;/h2&gt;

&lt;p&gt;Whether it's getting a handle on your photos, your budget or your recipe collection, Nexctloud is your one stop shop for degooglifying yourself.  But there are as many needs for applications as there are people in the world. Nextcloud offers you the basics to build your app upon. Authentication, file handling and sharing, access control, mobile and desktop clients - don't worry about that, we got you covered! All you need to do is think of an app that you'd like to have and start coding. Or if you've already found an app that you love but it misses stuff you'd like to see, go ahead - all code is open source and available on GitHub and you can easily open a PR to add your feature.&lt;/p&gt;

&lt;p&gt;We develop with PHP and VueJS. So whether you're frontend, backend or fullstack, I'm sure you can find some fun challenges to work on. We offer a large library of ready- to use vue components too, so you can pick and choose.&lt;/p&gt;

&lt;h2&gt;
  
  
  Part 2: Developing your first app
&lt;/h2&gt;

&lt;p&gt;We created an easy to follow tutorial for you to develop your first app. In this tutorial you will learn how to develop a simple files plugin. After this tutorial you will know:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;How the skeleton app is structured&lt;/li&gt;
&lt;li&gt;How actions of a files plugin are structured&lt;/li&gt;
&lt;li&gt;How to use the application.php file to define when the files plugin actions have to run&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;This tutorial will guide you through the steps of adding an extra action to the ⋯ icon next to a directory or file. For example, in the screenshot below, you can see a directory with an extra 'My directory action' label.&lt;br&gt;
&lt;strong&gt;Screenshot of the app:&lt;/strong&gt;&lt;br&gt;
&lt;a href="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F4j243tjhp40ietyq1uoa.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F4j243tjhp40ietyq1uoa.png" alt="Screenshot of the app. The screenshot shows the files app of Nextcloud with a file action menu that is added by the app."&gt;&lt;/a&gt;&lt;/p&gt;
&lt;h2&gt;
  
  
  Tutorial: Developing a simple files plugin
&lt;/h2&gt;

&lt;p&gt;Before you start, do make sure you have a working development environment. If you don't have a development environment yet, you can find a good tutorial about setting up your development environment &lt;a href="https://cloud.nextcloud.com/s/iyNGp8ryWxc7Efa?path=%2F1%20Setting%20up%20a%20development%20environment" rel="noopener noreferrer"&gt;here&lt;/a&gt;.&lt;/p&gt;
&lt;h3&gt;
  
  
  1. Download a skeleton app with the name FilesPlugin and add the skeleton app to the apps-extra folder in your development directory
&lt;/h3&gt;

&lt;p&gt;How to do these steps in detail were covered in the previous tutorial about how to set up your development environment.&lt;/p&gt;

&lt;p&gt;You have to place the generated app in the directory &lt;strong&gt;nextcloud-docker-dev / workspace / server&lt;/strong&gt;&lt;/p&gt;
&lt;h3&gt;
  
  
  2. Open the directory of your skeleton app.
&lt;/h3&gt;

&lt;p&gt;This is nextcloud-docker-dev / workspace / server / apps-extra / filesplugin.&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;&lt;strong&gt;&lt;em&gt;NOTE:&lt;/em&gt;&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;About the skeleton app structure&lt;/strong&gt;&lt;br&gt;
The directory you see now is where we will do our app development.&lt;br&gt;
You will see several directories:&lt;br&gt;
- appinfo (Contains app metadata and configuration)&lt;br&gt;&lt;br&gt;
- img (Contains icons and images)&lt;br&gt;&lt;br&gt;
- lib (Contains the PHP class files, which are pieces of code you can reuse to make your code more performant and easier to maintain)&lt;br&gt;&lt;br&gt;
- LICENSES (Contains the open-source licenses)&lt;br&gt;&lt;br&gt;
- src (Contains the source code of your vue.js app, for advanced front-end design)&lt;br&gt;&lt;br&gt;
- templates (Contains the templates, for example, you could add a template for a left-side bar)&lt;br&gt;&lt;br&gt;
- tests (Contains the automated tests to speed up your release cycle)&lt;br&gt;
You will also see several files, that you will not really need for now:&lt;br&gt;
- babel.config.js (Not needed)&lt;br&gt;&lt;br&gt;
- composer.json (Not needed if there is no PHP dependency which is usually the case)&lt;br&gt;&lt;br&gt;
- Makefile (Using this is up to the developer, it's the classic way to build app releases, but not mandatory)&lt;br&gt;&lt;br&gt;
- package.json (Only needed if there are some javascript dependencies, there is none in this app)&lt;br&gt;&lt;br&gt;
- psalm.xml (Not needed)&lt;br&gt;&lt;br&gt;
- README.md (Contains a user manual and is prominently displayed on e.g. GitHub)&lt;br&gt;&lt;br&gt;
- stylelint.config.js (Only needed if stylelint is installed and used in package.json, not needed here)&lt;br&gt;&lt;br&gt;
- webpack.config.js (Only needed if you write sources in /src/ and compile to /js/)&lt;br&gt;
&lt;strong&gt;Our files plugin will be written in javascript. Javascript files have to be created in a new directory (with the name) named js, which is the next step.&lt;/strong&gt;&lt;/p&gt;
&lt;/blockquote&gt;
&lt;h3&gt;
  
  
  3 Create a new directory named "js" in the filesplugin directory. In the "js" directory, create a new file named "filesplugin.js"
&lt;/h3&gt;
&lt;h3&gt;
  
  
  4 Open the "js/filesplugin.js" file, insert the following content
&lt;/h3&gt;

&lt;p&gt;&lt;strong&gt;Code to insert in the filesplugin.js file:&lt;/strong&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;OCA.Files.fileActions.registerAction({
    name: 'myDirectoryAction',
    displayName: t('my-app-id', 'My directory action'),
    mime: 'dir',
    permissions: OC.PERMISSION_READ,
    iconClass: 'icon-folder',
    actionHandler: (name, context) =&amp;gt; {
        console.debug('---------- directory action triggered', name, context)
        OC.dialogs.info('The directory "' + name + '" has a size of ' + context.fileInfoModel.attributes.size, 'My directory action')
    },
})

OCA.Files.fileActions.registerAction({
    name: 'myFileAction',
    displayName: t('my-app-id', 'My file action'),
    mime: 'file',
    permissions: OC.PERMISSION_READ,
    iconClass: 'icon-filetype-file',
    actionHandler: (name, context) =&amp;gt; {
        console.debug('---------- file action triggered', name, context)
        OC.dialogs.info('The file "' + name + '" has a size of ' + context.fileInfoModel.attributes.size, 'My file action')
    },
})

OCA.Files.fileActions.registerAction({
    name: 'myPdfAction',
    displayName: t('my-app-id', 'My PDF action'),
    mime: 'application/pdf',
    permissions: OC.PERMISSION_READ,
    iconClass: 'icon-file',
    actionHandler: (name, context) =&amp;gt; {
        console.debug('---------- pdf action triggered', name, context)
        OC.dialogs.info('The PDF file "' + name + '" has a size of ' + context.fileInfoModel.attributes.size, 'My PDF action')
    },
})
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;blockquote&gt;
&lt;p&gt;&lt;strong&gt;&lt;em&gt;NOTE:&lt;/em&gt;&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;About the structure of the filesplugin.js file&lt;/strong&gt;&lt;br&gt;
This is the code that defines the actions of the files plugin. You see that the code is structured in three blocks. Each block defines a file action: 'My directory action', 'My file action' and 'My pdf action'.&lt;br&gt;
Adding a file action is done by calling the OCA.Files.fileActions.registerAction() function which takes 5 parameters:&lt;br&gt;
1. name (This is how we refer in the rest of the code to this block)&lt;br&gt;&lt;br&gt;
2. displayName (This is how we refer in the user interface to this block)&lt;br&gt;&lt;br&gt;
3. mime (This defines that the code should respond if the selected file is a directory, a file, or a pdf. Note that a pdf is also a file so for a pdf both the file block as the pdf block will be triggered.)&lt;br&gt;&lt;br&gt;
4. permissions (The necessary permissions to show this action)&lt;br&gt;&lt;br&gt;
5. iconClass (Defines which icon is used, the core icon classes can be found in &lt;a href="https://docs.nextcloud.com/server/21/developer_manual/design/icons.html" rel="noopener noreferrer"&gt;here&lt;/a&gt;.\&lt;br&gt;
You can also set a custom class and define it's style in a custom CSS file that you inject alongside the javascript, for example, this is done in these pieces of code &lt;a href="https://github.com/eneiluj/integration_mattermost/blob/75547448803cd5fcce708180ddc606d375bde4dd/src/filesplugin.js#L63%20" rel="noopener noreferrer"&gt;[1]&lt;/a&gt; &lt;a href="https://github.com/eneiluj/integration_mattermost/blob/75547448803cd5fcce708180ddc606d375bde4dd/lib/AppInfo/Application.php#L87" rel="noopener noreferrer"&gt;[2]&lt;/a&gt; &lt;a href="https://github.com/eneiluj/integration_mattermost/blob/75547448803cd5fcce708180ddc606d375bde4dd/css/integration_mattermost-files.css#L2" rel="noopener noreferrer"&gt;[3]&lt;/a&gt;&lt;br&gt;
console.debug() will print messages in the browser console (works in all browsers: developer tools -&amp;gt; console tab)&lt;br&gt;
OC.dialogs.info is a function provided by Nextcloud frontend scripts. It displays an information modal with a confirmation button to close it.&lt;br&gt;
Now that we defined what the plugin has to do, we have to define when the plugin should be loaded, which we do in the "lib/AppInfo/Application.php file. This is the next step.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;h3&gt;
  
  
  5 &lt;strong&gt;Open the "lib/AppInfo/Application.php" file.&lt;/strong&gt;
&lt;/h3&gt;

&lt;blockquote&gt;
&lt;p&gt;&lt;strong&gt;&lt;em&gt;NOTE:&lt;/em&gt;&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;About the structure of the&lt;/strong&gt; &lt;strong&gt;Application.php file&lt;/strong&gt;&lt;br&gt;
It's important to understand that the lib/AppInfo/Application.php file of every enabled app is loaded every time you load any page in Nextcloud. For example, if you enable the calendar app, this app's Application.php is also loaded every time when you are browsing the Talk app.&lt;br&gt;
This means that an app can perform some actions even if it's not used explicitly.&lt;br&gt;
This also means that if one app you install is badly designed, this can affect the performance and security of your entire instance, even when using other apps.&lt;br&gt;
The Application.php file contains the dynamic declaration of an app. It defines what the app does in Nextcloud in general, on the server side. For example, an app can run some actions when a specific event is triggered.&lt;br&gt;
The next step is to extend the construct function to define when the filesplugin.js file should be loaded.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;h3&gt;
  
  
  6 Insert the following code at the end of the construct function (in between line 14 and 15)
&lt;/h3&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;// this runs every time Nextcloud loads a page if this app is enabled
$container = $this-&amp;gt;getContainer();
$eventDispatcher = $container-&amp;gt;get(IEventDispatcher::class);


// load files plugin script when the Files app triggers the LoadAdditionalScriptsEvent event
$eventDispatcher-&amp;gt;addListener(LoadAdditionalScriptsEvent::class, function () {
    // this loads the js/filesplugin.js script once the Files app has done loading its scripts
    Util::addscript(self::APP_ID, 'filesplugin', 'files');
    });
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;blockquote&gt;
&lt;p&gt;&lt;strong&gt;&lt;em&gt;NOTE:&lt;/em&gt;&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;About the structure of this piece of code&lt;/strong&gt;&lt;br&gt;
In the first block of code we define the variables that we need ($container and $eventDispatcher).&lt;br&gt;
In the second block of code we add a 'listener' which will run each time the Files app triggers the LoadAdditionalScriptsEvent event. If the Files app triggers this event, we then state that an additional script has to be loaded, namely the js/filesplugin.js script.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;h3&gt;
  
  
  7 Import the following classes in Application.php (in line 9, right below the already existing 'use' declarations)
&lt;/h3&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;use OCP\EventDispatcher\IEventDispatcher; 
use OCA\Files\Event\LoadAdditionalScriptsEvent; 
use OCP\Util;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;blockquote&gt;
&lt;p&gt;&lt;strong&gt;&lt;em&gt;NOTE:&lt;/em&gt;&lt;/strong&gt;&lt;br&gt;
The app is now ready to be used. The last step is to remove the navigation icon in the top bar (currently the cog icon), because for this app we do not need a navigation item.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;h3&gt;
  
  
  8 Open the "appinfo/info.xml" file
&lt;/h3&gt;

&lt;blockquote&gt;
&lt;p&gt;&lt;strong&gt;&lt;em&gt;NOTE:&lt;/em&gt;&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;About the info.xml file&lt;/strong&gt;&lt;br&gt;
The info.xml file contains all the metadata of the app that you filled in in the app skeleton generator. You can always edit the information here.&lt;br&gt;
Some interesting fields are the  field, in which you define the version of your app. You have to bump up this number if you make changes to the database schema. The Nextcloud server core will trigger an app upgrade process when a version number has changed. But this is not needed for this app as we don't use the server database at all.&lt;br&gt;
Another interesting field is the  field, which defines which Nextcloud server versions your app is compatible with. If someone wants to enable your app on a Nextcloud environment that does not fit this version statement, the red warning button "enable untested app" will appear in the app store.&lt;br&gt;
For the next step, we are going to edit the  field, which defines the navigation item in the top bar. We are going to remove this, so that the icon in the top blue bar will disappear.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;h3&gt;
  
  
  9 Remove the  tag (in line 22 - 25) in the  field
&lt;/h3&gt;

&lt;p&gt;Have you saved all the files you changed? Always make sure to save all the files you change for the changes to make effect.&lt;/p&gt;

&lt;h3&gt;
  
  
  10 Visit your Nextcloud app settings and enable your files plugin app.
&lt;/h3&gt;

&lt;h3&gt;
  
  
  Done!
&lt;/h3&gt;

&lt;p&gt;You can now check the app is working fine by opening the context menu of some files in the Files app. You should see your freshly added actions.&lt;/p&gt;

&lt;h3&gt;
  
  
  Do you want to learn more?
&lt;/h3&gt;

&lt;p&gt;Do you want to develop an app that does something else than displaying information of the file? Or do you want to develop a similar plugin for another app? This is possible. There are existing pieces of code that use a similar structure that you can draw inspiration from.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;a href="https://github.com/eneiluj/integration_mattermost" rel="noopener noreferrer"&gt;https://github.com/eneiluj/integration_mattermost&lt;/a&gt; 

&lt;ul&gt;
&lt;li&gt;
&lt;a href="https://github.com/eneiluj/integration_mattermost/blob/master/src/filesplugin.js" rel="noopener noreferrer"&gt;https://github.com/eneiluj/integration_mattermost/blob/master/src/filesplugin.js&lt;/a&gt;
A file plugin which creates and mounts a Vue component to send files in a Mattermost channel&lt;/li&gt;
&lt;/ul&gt;


&lt;/li&gt;

&lt;li&gt;

&lt;a href="https://github.com/nextcloud/approval" rel="noopener noreferrer"&gt;&lt;/a&gt;&lt;a href="https://github.com/nextcloud/approval" rel="noopener noreferrer"&gt;https://github.com/nextcloud/approval&lt;/a&gt; 

&lt;ul&gt;
&lt;li&gt;
&lt;a href="https://github.com/nextcloud/approval/blob/master/src/filesplugin.js" rel="noopener noreferrer"&gt;https://github.com/nextcloud/approval/blob/master/src/filesplugin.js&lt;/a&gt;
A file plugin which injects new content in the file details sidebar&lt;/li&gt;
&lt;/ul&gt;


&lt;/li&gt;

&lt;li&gt;

&lt;a href="https://github.com/nextcloud/files_lock" rel="noopener noreferrer"&gt;&lt;/a&gt;&lt;a href="https://github.com/nextcloud/files_lock" rel="noopener noreferrer"&gt;https://github.com/nextcloud/files_lock&lt;/a&gt; 

&lt;ul&gt;
&lt;li&gt;
&lt;a href="https://github.com/nextcloud/files_lock/blob/master/js/files.js" rel="noopener noreferrer"&gt;https://github.com/nextcloud/files_lock/blob/master/js/files.js&lt;/a&gt;
A file plugin which gets and display extra DAV attributes&lt;/li&gt;
&lt;/ul&gt;


&lt;/li&gt;

&lt;/ul&gt;

&lt;h2&gt;
  
  
  🤔 Do you have questions?
&lt;/h2&gt;

&lt;p&gt;Just post your questions below this post and we will try to see if we can help you further!&lt;/p&gt;

&lt;h2&gt;
  
  
  More tutorials
&lt;/h2&gt;

&lt;p&gt;If you would like to go through more tutorials, we have collected them here:&lt;/p&gt;

&lt;p&gt;&lt;a href="https://www.nextcloud.com/developer" rel="noopener noreferrer"&gt;https://www.nextcloud.com/developer&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Next week we will post the third part of the tutorial for developing your first app with an interface.&lt;/p&gt;

</description>
    </item>
    <item>
      <title>Developing with Nextcloud - Part 1 -Setting up for development</title>
      <dc:creator>Daphne Muller</dc:creator>
      <pubDate>Wed, 28 Jun 2023 10:36:28 +0000</pubDate>
      <link>https://dev.to/daphnemuller/developing-with-nextcloud-part-1-setting-up-for-development-677</link>
      <guid>https://dev.to/daphnemuller/developing-with-nextcloud-part-1-setting-up-for-development-677</guid>
      <description>&lt;h2&gt;
  
  
  Who is Nextcloud?
&lt;/h2&gt;

&lt;p&gt;Nextcloud is a team of enthusiastic open source developers who love to create a fully open source file sync-and-share solution. We love our Nextcloud community and a lot of our drive comes from giving the people what they need, and a lot of the PR's and apps come from our community and they develop brilliant things. 😉 &lt;/p&gt;

&lt;p&gt;We also make sure that Nextcloud works on a Raspberry Pi as well as on a Galera Cluster so everyone can benefit from the project. &lt;/p&gt;

&lt;h2&gt;
  
  
  Why develop with Nextcloud?
&lt;/h2&gt;

&lt;p&gt;Whether it's getting a handle on your photos, your budget or your recipe collection, Nextcloud is your one stop shop for degooglifying yourself.  But there are as many needs for applications as there are people in the world. Nextcloud offers you the basics to build your app upon. Authentication, file handling and sharing, access control, mobile and desktop clients - don't worry about that, we got you covered! All you need to do is think of an app that you'd like to have and start coding. Or if you've already found an app that you love but it misses stuff you'd like to see, go ahead - all code is open source and available on GitHub and you can easily open a PR to add your feature.&lt;/p&gt;

&lt;p&gt;We develop with PHP and VueJS. So whether you're frontend, backend or full-stack, I'm sure you can find some fun challenges to work on. We offer a large library of ready- to use Vue components too, so you can pick and choose.&lt;/p&gt;

&lt;h2&gt;
  
  
  Part 1: Setting up your development environment
&lt;/h2&gt;

&lt;p&gt;We created an easy to follow tutorial to set up your development environment for Nextcloud using docker. &lt;/p&gt;

&lt;p&gt;This tutorial is perfect for you if you wish to set up a locally running development environment for Nextcloud development and Nextcloud app development. It will take you, depending on your operating system, half an hour to a few hours to set up.&lt;/p&gt;

&lt;p&gt;If you are just looking for something quick for a little bit of experimenting or a workshop, you might prefer to use the DevContainer instead in combination with GitHub Codespaces. That would give you a development environment with just a few clicks in which you can also start the app tutorials. &lt;/p&gt;

&lt;p&gt;In this tutorial you will learn how to set up your development environment using docker. After this tutorial you will know:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;p&gt;How to install the docker desktop app on your machine&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;How to run Nextcloud locally&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;How to add a template app to your local Nextcloud&lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;The steps of the tutorial are different depending of your operating system, so we provided a tutorial for Ubuntu users, Mac users, and Windows users.&lt;/p&gt;

&lt;p&gt;You can find the tutorial here: &lt;a href="https://cloud.nextcloud.com/s/iyNGp8ryWxc7Efa?path=%2F1%20Setting%20up%20a%20development%20environment"&gt;https://cloud.nextcloud.com/s/iyNGp8ryWxc7Efa?path=%2F1%20Setting%20up%20a%20development%20environment&lt;/a&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  🤔 Do you have questions?
&lt;/h2&gt;

&lt;p&gt;Just post your questions below this post and we will try to see if we can help you further!&lt;/p&gt;

&lt;h2&gt;
  
  
  More tutorials
&lt;/h2&gt;

&lt;p&gt;If you would like to go through more tutorials, we have collected them here: &lt;/p&gt;

&lt;p&gt;&lt;a href="https://www.nextcloud.com/developer"&gt;https://www.nextcloud.com/developer&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Next week we will post the second part of the tutorial for your first simple app. &lt;/p&gt;

</description>
      <category>tutorial</category>
      <category>vue</category>
      <category>beginners</category>
      <category>nextcloud</category>
    </item>
  </channel>
</rss>
