Create a new site

To create a new site, go in the directory data/sites which contains the different sites. Duplicate and rename the folder starterkit to your projectname.

Open and edit site.ini and theme.ini.
Modify the content in default.lst with Mempad for windows or the web admin in Namaskar.

- data/
  - var/ [folder for logs, tmp files]
  - sites/
    - site1/
      - public/
        - index.php
          - media/
    - site2/
      - public/
        - index.php
          - media/
- namaskar/
  - core/ [Core files for the Framework]
  - src/ [This folder contains application-specific components]
    - Controllers/ [application controllers that manage actions and responses to requests]
      - HomeController.php
      - AdminController.php
      - ...
    - Services/ [application's services, which encapsulate business logic and reusable functionality.]
      - SomeService.php
      - ...
 - templates/ [template files used to generate the application views.]
    - bootstrap5/ [the defaut template]
      - index.html
      - navbar.html
      - ...
    - ...