
An Angular application with SSR in order to compute the financial support for a project, hosted on Netlify.
| Script |
Description |
ng |
Starts the development server. |
build |
Compiles TypeScript files and builds the production-ready application with Vite. |
serve:ssr:angular-starter |
Run the application in SSR mode. |
format |
Format source code. |
test |
Runs unit tests with Jest. |
lint |
Runs ESLint on all relevant files. |
postinstall |
Install Husky hooks. |
- Clone this repo.
git clone git@github.com:plecrx/kata-angular.git
cd kata-angular
- Install all dependencies. (yarn as default)
.husky/ : scripts which lint and format the staged files before committing
.jest/ : The cache for jest tests
src/ : The application source code
app/ : The static files (fonts, images, ...)
components/ : The components which will be used in pages
services/ : The services to manage data
pages/ : The application pages
types/ : Global types
config/ : App and server configuration files
main.ts : The app entry point
main.server.ts : The server entry point
routes.ts : React routes configuration files
Prescilla Lecurieux