This is an Angular-based project that allows task management. It is part of a challenge from the Platzi Angular School.
- Clone the repository to your personal space on your computer.
- Install dependencies using the command
npm install
. - Check the development environment by running the command
ng serve
.
- Install requirements for E2E testing with the command
npm run e2e:install
. - Verify that E2E tests run successfully using the command
npm run e2e
.
The project comes with an initial configuration, which is typical for Angular projects and is ready to incorporate functionalities.
├── README.md ├── angular.json ├── dist ├── e2e ├── karma.conf.js ├── node_modules ├── package-lock.json ├── package.json ├── playwright.config.ts ├── src ├── tsconfig.app.json ├── tsconfig.json └── tsconfig.spec.json
- The command
npm run build
runs Webpack in production mode and places production files in the/dist/app
folder. - The command
npm run e2e
runs E2E tests using Playwright. - The command
npm run start
launches a development mode server with live reload. - The command
npm run start:prod
starts a server usinghttp-server
with the/dist/myapp
folder, which contains production files. Before running this command, make sure to runnpm run build
.