Giter Club home page Giter Club logo

cv-generator's Introduction

CV Generator

Full Stack MERN App to quickly generate a downloadable and printable CV

Enter your details into the app

CV-Generator-App

Get a readable and professional CV generated in fractions of a minute

CV-Generator-App 2


Development

Prerequisite

  1. Make sure you have Node.js version >= 13.

Install

Clone the repository into your system and open the directory and run this command to install all dependencies

npm install

PORT Config (backend)

To customise port of webapp, create .env

  1. Create YOUR_PORT
  2. Assign the port value of your choice in YOUR_PORT
  3. Access .env parameters in app.js using dotenv.config()
  4. Access Port value usign process.env.YOUR_PORT and provide it to app.listen()

PORT Config (frontend)

To customise port of react-app, open package.json

  1. Find Start under Scripts object
  2. Assign the port value of your choice in set PORT //default port value is 3000
"scripts": {
    "start": "set PORT=8000 && react-scripts start"
  }
  1. If you want to proceed with default port then skip above steps and do
"scripts": {
    "start": "react-scripts start"
  }

CORS

To access resources available in backend running on different port (while developing in localhost) proceed with either of following 2 steps:

  1. Make sure to run command npm i cors before using in app.js file
app.use(cors())
  1. Go to package.json of your frontend folder and add the following script :
"proxy" : "http://your.ip.address:YOUR_PORT"

Start

Open Backend and Frontend directories in command prompt and run following command in both directories

npm start

cv-generator's People

Contributors

neeraj-22 avatar

Stargazers

 avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.