Update README.md and .env.example for Node.js version and redirect URLs
- Updated Node.js version requirement in README.md to v18 or newer. - Modified .env.example to change Google callback and redirect URLs for consistency in authentication flow.
This commit is contained in:
@@ -44,7 +44,7 @@ This repository contains the frontend and backend code for Worklenz.
|
|||||||
|
|
||||||
## Requirements
|
## Requirements
|
||||||
|
|
||||||
- Node.js version v16 or newer
|
- Node.js version v18 or newer
|
||||||
- PostgreSQL version v15 or newer
|
- PostgreSQL version v15 or newer
|
||||||
- Docker and Docker Compose (for containerized setup)
|
- Docker and Docker Compose (for containerized setup)
|
||||||
|
|
||||||
@@ -54,7 +54,7 @@ These instructions will help you set up and run the Worklenz project on your loc
|
|||||||
|
|
||||||
### Prerequisites
|
### Prerequisites
|
||||||
|
|
||||||
- Node.js (version 16 or higher)
|
- Node.js (version 18 or higher)
|
||||||
- PostgreSQL database
|
- PostgreSQL database
|
||||||
- An S3-compatible storage service (like MinIO) or Azure Blob Storage
|
- An S3-compatible storage service (like MinIO) or Azure Blob Storage
|
||||||
|
|
||||||
|
|||||||
@@ -20,9 +20,9 @@ DB_MAX_CLIENTS=50
|
|||||||
# Google Login
|
# Google Login
|
||||||
GOOGLE_CLIENT_ID="your_google_client_id"
|
GOOGLE_CLIENT_ID="your_google_client_id"
|
||||||
GOOGLE_CLIENT_SECRET="your_google_client_secret"
|
GOOGLE_CLIENT_SECRET="your_google_client_secret"
|
||||||
GOOGLE_CALLBACK_URL="http://localhost:3000/secure/google/verify"
|
GOOGLE_CALLBACK_URL="http://localhost:5000/secure/google/verify"
|
||||||
LOGIN_FAILURE_REDIRECT="/"
|
LOGIN_FAILURE_REDIRECT="http://localhost:5000/auth/authenticating"
|
||||||
LOGIN_SUCCESS_REDIRECT="http://localhost:5000/auth/authenticate"
|
LOGIN_SUCCESS_REDIRECT="http://localhost:5000/auth/authenticating"
|
||||||
|
|
||||||
# CLI
|
# CLI
|
||||||
ANGULAR_DIST_DIR="path/to/frontend/dist"
|
ANGULAR_DIST_DIR="path/to/frontend/dist"
|
||||||
|
|||||||
Reference in New Issue
Block a user