This is a todo list implemented with the clean architecture.
In order to get the project, run the following command: git clone https://github.com/QuodFinancial/clean-todo.git
.
Then, cd
to the directory (clean-todo
) and run npm run init
. This will install all the dependencies required for the project.
This step only needs to be done once, but is necessary to build, serve or run the tests
To build the project, run npm run build
.
The build can be found is the dist
directory inside the app folder.
In order to run the development server, run npm start
.
The project will be served on port 4200 of your machine. Just go to http://localhost:4200
The lib part of the application is unitary tested. To run these tests, run npm test
command.