https://github.com/onukwilip/capital-placement-task-2
This is the repository which holds the second task assigned to me by Capital placement
https://github.com/onukwilip/capital-placement-task-2
Last synced: about 1 month ago
JSON representation
This is the repository which holds the second task assigned to me by Capital placement
- Host: GitHub
- URL: https://github.com/onukwilip/capital-placement-task-2
- Owner: onukwilip
- Created: 2023-09-27T16:45:23.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2023-09-27T16:53:41.000Z (over 1 year ago)
- Last Synced: 2025-01-18T05:27:10.473Z (3 months ago)
- Language: TypeScript
- Homepage: https://capital-placement-task-2.vercel.app
- Size: 345 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# CAPITAL PLACEMENT TASK 2
This is the first task (Task 2) of the interview assessment assigned to me by captial placement for the role of a frontend developer. The project was developed using the following tools:
- React Js
- Typescript
- SCSS
- Material UI
- Docker## HOW TO USE
- **Run the project directly on your system**:
> To run this project directly on your system you will need [**Node.Js**](https://nodejs.org/en/download) version **16.15.0** or higher
- Run `git clone https://github.com/onukwilip/capital-placement-task-2.git`
- Run `npm i -f` (To install all dependencies)
- Run `npm run build` (To create the production build)
- Run `npm i -g serve` (Install the library responsible for serving the production build)
- Run `npx serve -s build` (Serve the application on http://localhost:3000)- **Run the project using Docker**:
> To run this project as a container you will need [**Docker**](https://www.docker.com/products/docker-desktop/)
- Run `git clone https://github.com/onukwilip/capital-placement-task-2.git`
- Run `docker build -t cp-task-2 .`
- Run `docker run -p 3000:3000 -rm -it cp-task-2`