-
Notifications
You must be signed in to change notification settings - Fork 0
General Structure
In general, the source code is laid out in several folders. You shouldn't need to change much of the structure unless you are reorganizing how things are built.
calchart-redesign/public:
These are the files that are the top level downloaded files for the App. In general you don't need to execute these.
calchart-redesign/src/App.vue
The high level App layout.
calchart-redesign/src/main.ts
The entry point of the program.
calchart-redesign/src/assets
Art.
calchart-redesign/src/components
The different elements of the App layout, like menus.
calchart-redesign/src/models
The data structures of the underlying application..
calchart-redesign/tests/unit
Contain the unit test. If you add more data structures to the model or you add new interactions between parts of the models, add it here.
calchart-redesign/tests/e2e
Contain the End to End tests. You should add tests here to make sure things animate correctly, that the layout is confirmed to be how you would expect it when somebody has been interacting with the project for a while.
calchart-redesign/tests/unit
Contain the unit test. If you add more data structures to the model or you add new interactions between parts of the models, add it here.