An Angular application with SSR in order to compute the financial support for a project, hosted on Netlify.
Logo | Name | Link |
---|---|---|
Typescript | https://github.com/microsoft/TypeScript | |
ESLint | https://github.com/eslint/eslint | |
Prettier | https://github.com/prettier/prettier | |
Angular 17 | https://angular.io |
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 [email protected]:plecrx/kata-angular.git
cd kata-angular
- Install all dependencies. (yarn as default)
yarn
.husky/
: scripts which lint and format the staged files before committing.jest/
: The cache for jest testssrc/
: The application source codeapp/
: The static files (fonts, images, ...)components/
: The components which will be used in pagesservices/
: The services to manage datapages/
: The application pagestypes/
: Global typesconfig/
: App and server configuration filesmain.ts
: The app entry pointmain.server.ts
: The server entry pointroutes.ts
: React routes configuration files