2
0
mirror of https://github.com/frappe/books.git synced 2025-01-25 08:08:37 +00:00
18alantom cc675e54ff build: add dev script
- enable source maps for main process
- run main and build process using the same command
- change dev command to `yarn dev`
2023-06-20 15:59:37 +05:30
..
2022-05-22 19:13:02 +00:00
2022-05-23 16:18:22 +05:30
2023-06-14 10:30:40 +05:30
2023-04-04 22:10:32 -07:00
2023-06-20 15:59:37 +05:30
2023-06-13 13:37:39 +05:30

src

This is where all the frontend code lives

Fyo Initialization

The initialization flows are different when the instance is new or is existing. All of them are triggered from src/App.vue.

New Instance

  1. Run Setup Wizard for init values (eg: country).
  2. Call setupInstance.ts/setupInstance using init values.

Existing Instance

  1. Connect to db.
  2. Check if Setup Wizard has been completed, if not, jump to New Instance
  3. Call initFyo/initializeInstance with dbPath and countryCode

Global Fyo

Global fyo is exported from initFyo.ts. Only code that isn't going to be unit tested using mocha should use this, i.e. code in src