- Clone the repository.
- Open the project with Vscode.
- npm i
- npm run start (for envorimoent developer you can use "npm run dev")
$npm init -y
$npm install --save-dev nodemon
$npm install --save express
$npm install --save dotenv
$npm install --save oracledb
$npm install --save bcryptjs
$npm install --save cors
$npm install --save cookie-parser
# Server configurations
SERVER_PORT=8500
# Database Configuration
ORACLE_USER="yourOracleUser"
ORACLE_PASSSWORD="yourOraclePassword"
ORACLE_CONNECT_STRING="localhost:1521/orclpdb"