Skip to content

Latest commit

 

History

History
78 lines (64 loc) · 2.53 KB

ReadMe.md

File metadata and controls

78 lines (64 loc) · 2.53 KB

📃 About

I was challenged to develop a part of the flow of a loan system, basically the registration part of a loan application and the visualization of it.

The challenge descriptions are available at this link

The Front End of the application made in Next.js is hosted here

The application's Back End was done in Node.js with Express and MongoDB, and is hosted here

🔨 Technologies

This project was developed with the following technologies:

📚 Requirements

  • Have Git to clone the project.
  • Have Node.js installed.

🚀 Get Started

  # Clone the project:
  $ git clone https://github.com/cajlonbatista/credifica

  # Enter the directory:
  $ cd credifica

🔑 Environment variables

Create file .env.local in ./app and add your necessary content:

  URL_API=http://localhost:8080
  NODE_ENV=production

Create file .env in ./server and add your necessary content:

    PORT=http://localhost:8080
    DB_URL=mongodb+srv://cajlonbatista:[email protected]/klutch?retryWrites=true&w=majority

⚙️ Starting Server

  # Enter the directory:
  $ cd server

  # Install the dependencies:
  $ yarn install
  
  # Launch an server:
  $ yarn start

⚙️ Starting App

  # Enter the directory:
  $ cd app

  # Install the dependencies:
  $ yarn install
  
  # Application Production:
  $ yarn build

  # Launch an application:
  $ yarn start

🤝 Contributors