Share My Creation [Web] [Project Template] Pakai Server v6.00beta

Pakai Server v6.00beta​

GitHub: https://github.com/pyhoon/pakai-server-b4j/tree/v6.00

1762329495954.png


Template:
  • Pakai Server (6.00beta).b4xtemplate (28KB)
Depends on:

Reminder: Please do not post issue or question on this thread.
Always remember to start a new thread for any question and prefix with [Pakai v6].
 

Attachments

  • Pakai Server (6.00beta).b4xtemplate
    27.9 KB · Views: 0
Last edited:

aeric

Expert
Licensed User
Longtime User

AppStart​

AppStart:
Sub AppStart (Args() As String)
    App.Initialize
    App.LoadConfig
    
    ' *** Web handlers ***
    App.Get("", "ProductsHandler")
    App.Get("/categories", "CategoriesHandler")
    
    ' *** Api handlers ***
    App.Rest("/api/products/*", "ProductsHandler")
    App.Rest("/api/categories/*", "CategoriesHandler")
    
    App.Start

    DB.Initialize
    DB.ConnectDatabase
    StartMessageLoop
End Sub
 
Top