Skip to content

Repository files navigation

EnrollMe


Description

In partial fulfillment of academic requirements in ITE 001

Dependencies

Setup

Dependencies Installation

Visual Studio

Install Visual Studio 2019 (or later versions) Include the ff. Workloads:

  • Desktop Development with C++

Git

Click for instructions in installing Git

Vcpkg Installation

Vcpkg can be installed anywhere; it is recommended to install in C:\src\. (Create C:\src\ directory if it doesn't exist).

Clone vcpkg repository.

cd C:\src\
git clone https://github.com/microsoft/vcpkg

Bootstrap vcpkg repository.

.\vcpkg\bootstrap-vcpkg.bat

In order to use vcpkg with Visual Studio, run the following command (may require administrator elevation):

.\vcpkg\vcpkg integrate install

Project Development Setup

  1. Enter the ff. code in Windows Powershell to set the environment variables:
$env:VCPKG_ROOT = 'C:\src\vcpkg'
$env:VCPKG_DEFAULT_TRIPLET = 'x64-windows'
  1. Also enter the ff. code to clone the repository:
git clone https://github.com/iooosef/EnrollMe.git
  1. Open Visual Studio

  2. Click Continue without code →

  3. In the Menu Bar, click FileOpenCmake...

  4. Navigate to .\EnrollMe\ directory, then open CMakeLists.txt

  5. In the Developer PowerShell enter the code to install vcpkg dependencies:

vcpkg install
  1. Also enter the code to generate the build files:
cmake -B build -S .\ --preset x64-debug
  1. In Visual Studio click Debug menu bar, then Debug and Launch Settings for EnrollMe.

  2. inside launch.vs.json, add the following below "name" to run the web server.

"name": "EnrollMe.exe",
"args": [
  "run"
]
  1. Debug and Run

Running

To run the web server. Add the run as an argument.

./EnrollMe.exe run
Documentation by Group 8 ITE001 - CS11S2
Parayaoan, Joseph Clarence • Clemente, Ken Shelly Charles • Fernandez, Sandrhen • Palaganas, John Michael Dublin

Releases

Packages

Contributors

Languages