Commit a86f79df authored by Javier Velázquez's avatar Javier Velázquez
Browse files

Merge branch 'develop' into 'main'

Update copyright headers and minor typos for Release 5

See merge request !2
parents d57a1a97 2dfb4f16
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -35,7 +35,7 @@ The realizer module determines the realization of each slice by interacting with
<img src="images/NSC_Architecture.png" alt="NSC Architecture">

## Requirements
- Python3
- Python3.12
- python3-pip
- python3-venv

@@ -70,8 +70,8 @@ To deploy and execute the NSC, follow these steps:

0. **Preparation**
    ```
    git clone https://github.com/Telefonica/network_slice_controller.git
    cd network_slice_controller
    git clone https://labs.etsi.org/rep/tfs/nsc.git
    cd nsc
    python3 -m venv venv
    source venv/bin/activate
    pip install -r requirements.txt
+3 −1
Original line number Diff line number Diff line
# Copyright 2025 Telefonica Innovación Digital S.L.
# Copyright 2022-2025 ETSI SDG TeraFlowSDN (TFS) (https://tfs.etsi.org/)

# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
@@ -12,6 +12,8 @@
# See the License for the specific language governing permissions and
# limitations under the License.

# This file is an original contribution from Telefonica Innovación Digital S.L.

from flask import Flask
from flask_restx import Api
from flask_cors import CORS
+231 KiB (482 KiB)
Loading image diff...
+3 −1
Original line number Diff line number Diff line
# Copyright 2025 Telefonica Innovación Digital S.L.
# Copyright 2022-2025 ETSI SDG TeraFlowSDN (TFS) (https://tfs.etsi.org/)

# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
@@ -12,6 +12,8 @@
# See the License for the specific language governing permissions and
# limitations under the License.

# This file is an original contribution from Telefonica Innovación Digital S.L.

import logging, os
# Default logging level
DEFAULT_LOGGING_LEVEL = logging.INFO
+1 −1
Original line number Diff line number Diff line
# Copyright 2025 Telefonica Innovación Digital S.L.
# Copyright 2022-2025 ETSI SDG TeraFlowSDN (TFS) (https://tfs.etsi.org/)

# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
Loading