Skip to content
Snippets Groups Projects
Commit 02b08844 authored by jvanboxtel@wisc.edu's avatar jvanboxtel@wisc.edu
Browse files

improved readme

parent 6686861f
No related branches found
No related tags found
No related merge requests found
...@@ -39,4 +39,53 @@ Have a look at the `package.json` for more a more detailed view. ...@@ -39,4 +39,53 @@ Have a look at the `package.json` for more a more detailed view.
## Developing ## Developing
### [Visual Studio Code](https://code.visualstudio.com/) ### [Visual Studio Code](https://code.visualstudio.com/)
Works great with typescript ecosystem. Works great with typescript ecosystem.
\ No newline at end of file
## Basic project structure
<pre> app
| |-- app.component.html
| |-- app.component.scss
| |-- app.component.spec.ts # All tests end with .spec.ts
| |-- app.component.ts
| |-- app.module.ts # Parent app module
| |-- app.routing.module.ts # Primary place to add new routes
| |-- core
| | |-- config.service.ts # Used for config vars
| | |-- core.module.ts
| | |-- data.service.spec.ts # Designed to mock data
| | |-- data.service.ts # One catch all service for data transmission
| | |-- models # Placeholder for user created models/interfaces
| | |-- module-import-check.ts # Prevents the core module from loading twice.
| | `-- navigation # Shared navigation component
| | |-- navigation.component.html
| | |-- navigation.component.scss
| | |-- navigation.component.spec.ts
| | `-- navigation.component.ts
| |-- home # Starter component using the router
| | |-- home.component.html
| | |-- home.component.scss
| | |-- home.component.spec.ts
| | `-- home.component.ts
| `-- shared # App wide shared directory. All modules could have a shared Directory too
| `-- shared.module.ts # Only add Material components here!
|-- assets
| |-- material-theme.scss # Custom Material theme
| `-- uwstyle # Copy of UWStyle
| |-- dist
| |-- fonts
| `-- images
|-- index.html # html entry point gets app.component
|-- main.ts
|-- polyfills.ts # Enables compatibility for older browsers
|-- styles.css # Could be used for global styles/imports
|-- test.ts # Required by karma
|-- tsconfig.app.json
|-- tsconfig.spec.json
`-- typings.d.ts
../.angular-cli.json # All project config for the angular cli
../tslint.json # All project lint settings ex: "ng lint"
../e2e/ # All project end to end tests ex: "ng e2e"
../tsconfig.json # Primary typescript config
</pre>
src/favicon.ico

5.3 KiB | W: | H:

src/favicon.ico

5.3 KiB | W: | H:

src/favicon.ico
src/favicon.ico
src/favicon.ico
src/favicon.ico
  • 2-up
  • Swipe
  • Onion skin
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment