How to Install Reactive Resume on EndeavourOS Latest
Reactive Resume is an open-source, customizable, and modern web application that allows you to create an interactive and attractive resume website. In this tutorial, we will guide you through the process of installing Reactive Resume on EndeavourOS Latest.
Prerequisites
Before proceeding any further, make sure you have the following prerequisites:
- An up-to-date EndeavourOS Latest distribution Installed
- Node.js and npm installed on your system
- Git installed on your system
Step 1: Clone the Repository
To clone the Reactive Resume repository, open a terminal on your system and run the following command:
git clone https://github.com/AmruthPillai/Reactive-Resume.git
This will download the latest version of the repository to the current directory.
Step 2: Install Dependencies
After cloning the repository, navigate to the Reactive Resume directory in your terminal and run the command below to install all required dependencies:
npm install
Step 3: Configure the Application
To configure the Reactive Resume application, create a .env file in the root of the project directory, and add the following environment variables:
REACT_APP_NAME=Your-Name
REACT_APP_TAGLINE=Your-Tag-line
REACT_APP_EMAIL=Your-Email
REACT_APP_PHONE=Your-Phone
REACT_APP_GITHUB=Your-GitHub-Username
REACT_APP_LINKEDIN=Your-LinkedIn-Username
Make sure to replace the placeholders with your information.
Additionally, you can customize the following parameters from the src/assets/portfolioData.json file:
- Career Objective
- Social Media Links
- Work Experience
- Education
- Projects
Step 4: Start the Application
After configuring the application, you can start the Reactive Resume application by running the following command:
npm start
This will start the development server on port 3000.
Step 5: Build and Deploy the Application
After customizing the application to your preferences, you can build and deploy the application using the following command:
npm run build
This command will create a build directory containing all the necessary files to deploy the application.
Congratulations! You have successfully installed Reactive Resume on EndeavourOS Latest. You can now access your website by navigating to http://localhost:3000 in your web browser.