Skip to content
This repository has been archived by the owner on Dec 11, 2023. It is now read-only.

Latest commit

 

History

History
53 lines (40 loc) · 1.48 KB

repo_layout.md

File metadata and controls

53 lines (40 loc) · 1.48 KB

Repo Layout

Code

For more details on the pages see the frontend architectural overview.

Folder Layout

  • src folder (all): where the source file are
    • Note: tests are in the same src files for rust
    • Note: rust file end in rs
  • Cargo.toml file (all): The config of the project
    • Big things are: name and dependencies
  • dist folder (web): final output page from trunk
  • target folder (all-sometimes): output/building of the source code using cargo
  • index.html file (web): trunk use as starting place to make the page
  • Truck.toml file (web): config trunk
  • migrations folder (database/diesel): used to make schema.rs file and to setup database

Scripts

Docs

folder layout

  • README.md file: Starting page (often Table of contents)

From IDE's