This is the Angular frontend for the Kept interview experience sharing platform. It is built with Angular and TypeScript.
Backend Repository: https://github.com/7TIN/kept
To get a local copy up and running, follow these simple steps.
- Node.js
- Angular CLI
- Clone the repository
git clone https://github.com/your_username/kept-client-angular.git
- Navigate to the project directory
cd kept-client-angular
- Install dependencies
npm install
- Run the application
ng serve
You will need to set up the environment files in the src/environments
directory.
export const environment = {
production: false,
API_BASE_URL: 'http://localhost:8080/api',
AUTH_BASE_URL: 'http://localhost:8080/auth'
};
export const environment = {
production: true,
API_BASE_URL: '{backendlive}/api',
AUTH_BASE_URL: '{backendlive}/auth'
};