Skip to content
Snippets Groups Projects

Compare revisions

Changes are shown as if the source revision was being merged into the target revision. Learn more about comparing revisions.

Source

Select target project
No results found
Select Git revision
  • develop
  • master
  • 0.2
  • 2.0
  • 2.1
  • 2.10
  • 2.11
  • 2.12
  • 2.13
  • 2.14
  • 2.15
  • 2.2
  • 2.3
  • 2.4
  • 2.5
  • 2.6
  • 2.8
  • 2.9
18 results

Target

Select target project
  • goat/gap/geant-service-orchestrator-gui
1 result
Select Git revision
  • develop
  • master
  • 0.2
  • 2.0
  • 2.1
  • 2.10
  • 2.11
  • 2.12
  • 2.13
  • 2.14
  • 2.15
  • 2.2
  • 2.3
  • 2.4
  • 2.5
  • 2.6
  • 2.8
  • 2.9
18 results
Show changes
Commits on Source (8)
......@@ -29,4 +29,4 @@ NETWORK_TOPOLOGY_API_URL="http://localhost:8080/api/v1/networks/topology"
NEXTAUTH_URL=http://localhost:3000/api/auth
NEXTAUTH_SECRET="LR1a4CU9UVFr1OcVeu4ULDX/VHMMiI+s3wNvOkf6fdE=" # openssl rand -base64 32
# Disable cache - usefull when in development
NEXT_PUBLIC_DISABLE_CACHE=false
\ No newline at end of file
NEXT_PUBLIC_DISABLE_CACHE=false
# Changelog
All notable changes to this project will be documented in this file.
## [2.15] - 2025-03-21
- Upgrade orchestrator-ui-libary to 3.1.1
- Upgrade npm dependencies to resolve vulnerabilities
- Upgrade node to v22
## [2.14] - 2024-12-13
- Update references to GÉANT service IDs
......
FROM node:20.12.2-alpine AS builder
FROM node:22.14.0-alpine AS builder
# ENV NODE_ENV=production
ENV NEXT_TELEMETRY_DISABLED 1
ENV NEXT_TELEMETRY_DISABLED=1
WORKDIR /app
COPY . .
......@@ -10,13 +9,13 @@ RUN npm install
RUN npm run build
FROM node:20.12.2-alpine AS runner
FROM node:22.14.0-alpine AS runner
RUN apk update && apk add --no-cache curl vim
# ENV NODE_ENV=production
ENV NODE_ENV=production
ENV HOSTNAME=0.0.0.0
ENV NEXT_TELEMETRY_DISABLED 1
ENV NEXT_TELEMETRY_DISABLED=1
COPY --from=builder /app/.next/standalone /app
COPY --from=builder /app/.next/static /app/.next/static
......
......@@ -2,4 +2,4 @@
/// <reference types="next/image-types/global" />
// NOTE: This file should not be edited
// see https://nextjs.org/docs/basic-features/typescript for more information.
// see https://nextjs.org/docs/pages/building-your-application/configuring/typescript for more information.
This diff is collapsed.
{
"name": "wfo-ui",
"version": "1.0.0",
"name": "gso-ui",
"version": "2.15",
"private": true,
"scripts": {
"dev": "next dev",
......@@ -21,7 +21,7 @@
"@emotion/css": "^11.11.2",
"@emotion/react": "^11.11.1",
"@open-policy-agent/opa-wasm": "^1.8.1",
"@orchestrator-ui/orchestrator-ui-components": "2.12.0",
"@orchestrator-ui/orchestrator-ui-components": "3.4.0",
"@reduxjs/toolkit": "^2.0.1",
"axios": "^1.7.2",
"cytoscape": "^3.29.2",
......
......@@ -3,7 +3,7 @@ from setuptools import setup
setup(
name="geant-service-orchestrator-gui",
py_modules=[],
version="2.14",
version="2.15",
author="GÉANT Orchestration and Automation Team",
author_email="goat@geant.org",
description="GÉANT Service Orchestrator GUI dummy package",
......