Starting app file structure

Hi! I have very simply question. Where i can get empty file structure for my future app?
I dont wanna install some additional tools like ocdev
Just minimum files that i can create in my app folder, then send some request to my app and get result “hello world”.

I will build REST app so i dont need that all templates, menus and so on. Maybe there is somewhere some simple repositiory with such ‘app skeleteon’ but i could not find it using google

Thanks

/appinfo
    app.php
    info.xml
    routes.php
/lib
    /Appinfo
        Application.php
    /Controller
        RestController.php
    Example.php
/tests
    ExampleTest.php

It is something like that. Follow the documentation: https://doc.owncloud.org/server/latest/developer_manual/app/fundamentals/info.html . Also you can look the other app’s code and structure from Github.

1 Like