Logic Machine Forum
Application Store documentation and sample app - Printable Version

+- Logic Machine Forum (https://forum.logicmachine.net)
+-- Forum: LogicMachine eco-system (https://forum.logicmachine.net/forumdisplay.php?fid=1)
+--- Forum: Application Store (https://forum.logicmachine.net/forumdisplay.php?fid=11)
+--- Thread: Application Store documentation and sample app (/showthread.php?tid=85)

Pages: 1 2


RE: Application Store documentation and sample app - henk66 - 24.06.2021

Can I apply too for these packaging instructions?

Thanks in advance.


RE: Application Store documentation and sample app - Daniel - 24.06.2021

https://forum.logicmachine.net/showthread.php?tid=85


RE: Application Store documentation and sample app - Bitver - 08.11.2021

I wondered how to make .ipk file for installation from GUI. Can I have packaging guide too?

Thanks in advance!


RE: Application Store documentation and sample app - Daniel - 08.11.2021

You can't, once you have the app working we can compile it.


RE: Application Store documentation and sample app - dnky76 - 06.02.2023

I'm not sure if this is the best place to ask, but I have an app that I now wish to package as an IPK. I know how to create an IPK file, but if I try and install this I get an error. Do I need to send the code etc to you guys?

Many thanks

Darren


RE: Application Store documentation and sample app - mellotron - 03.05.2023

hi please can you help me to make an api that takes json data and save it in to csv file
thanks in advance.


RE: Application Store documentation and sample app - admin - 03.05.2023

Use this to get raw POST JSON in your .lp file:
Code:
<?
require('apps')

-- read POST data
body = ngx.req.get_body_data()

if body then
  -- decode data as JSON
  data = json.pdecode(body)

  -- check that data is a table
  if type(data) == 'table' then
    log(data)

    -- add data to CSV
  end
end



RE: Application Store documentation and sample app - RomansP - 12.01.2024

Hello!

Here is very simple app (for people who only start their experience in app development).

App includes:
1.) Example of form validity on client's side.
2.) Example of form validity on server's side.
3.) Usage of storage.
4.) Usage of redis.
5.) Example of selecting KNX objects by it's data type.
6.) Example of displaying KNX objects and it's values as an editable list.

The app should be located in /data/apps/store/data/


RE: Application Store documentation and sample app - savaskorkmaz - 08.02.2024

Hi,
How we can create an ipk package file to upload new device ?
Thanks


RE: Application Store documentation and sample app - admin - 08.02.2024

Check PM


RE: Application Store documentation and sample app - davidkoch29 - 27.04.2024

If I store the data via ftp in /data, do I have to pay attention to anything else? Because the app is then not displayed. Or do I have to make an .ipk out of it?


RE: Application Store documentation and sample app - admin - 29.04.2024

Do you have index.lp and icon.png or icon.svg in your app directory?


RE: Application Store documentation and sample app - davidkoch29 - 29.04.2024

Yes i have


RE: Application Store documentation and sample app - admin - 29.04.2024

Path should be /data/template not /data/template/template