Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
O
OpenXG-RAN
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
spbro
OpenXG-RAN
Commits
d07044de
Commit
d07044de
authored
Oct 18, 2024
by
Robert Schmidt
Browse files
Options
Browse Files
Download
Plain Diff
Merge remote-tracking branch 'origin/websrv-small-regression' into integration_2024_w42 (!2997)
parents
eafca88d
a6576db5
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
25 additions
and
1 deletion
+25
-1
common/utils/websrv/CMakeLists.txt
common/utils/websrv/CMakeLists.txt
+1
-1
common/utils/websrv/DOC/websrvuse.md
common/utils/websrv/DOC/websrvuse.md
+24
-0
No files found.
common/utils/websrv/CMakeLists.txt
View file @
d07044de
...
...
@@ -62,7 +62,7 @@ add_library(websrv MODULE
websrv_utils.c
../../../openair1/PHY/TOOLS/nr_phy_scope.c
)
target_link_libraries
(
websrv PRIVATE ulfius jansson
)
target_link_libraries
(
websrv PRIVATE ulfius jansson
asn1_nr_rrc_hdrs
)
target_compile_definitions
(
websrv PUBLIC WEBSRVSCOPE
)
# put websrv into build root and not under build/common/utils/websrv/
set_target_properties
(
websrv PROPERTIES LIBRARY_OUTPUT_DIRECTORY ../../..
)
...
...
common/utils/websrv/DOC/websrvuse.md
View file @
d07044de
...
...
@@ -38,6 +38,20 @@ $ sudo dnf install -y jansson-devel npm curl wget
ulfius has to be installed as explained
[
here
](
https://github.com/babelouest/ulfius/blob/master/INSTALL.md#pre-compiled-packages
)
.
## Install from source if needed
```
bash
sudo
dnf
install
-y
jansson-devel npm curl wget libmicrohttpd-devel curl curlpp-devel systemd-devel
git clone https://github.com/babelouest/orcania.git
cd
orcania
;
mkdir
build
;
cd
build
;
cmake ..
;
sudo
make
install
cd
git clone https://github.com/babelouest/yder.git
cd
yder
;
mkdir
build
;
cd
build
;
cmake ..
;
sudo
make
install
git clone https://github.com/babelouest/ulfius.git
cd
ulfius
mkdir
build
;
cd
build
;
cmake ..
;
sudo
make
install
```
## Additional dependencies for the frontend
Currently the web server frontend can run with nodejs 18, you can check the
...
...
@@ -54,6 +68,16 @@ beyond this doc.
For example, to install a specific nodeJS version, you can run the below
command, with the typical output printed below for your convenience:
install method by nvm
```
bash
curl
-o-
https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.3/install.sh | bash
source
~/.bashrc
nvm
install
18
nvm use 18
```
install by apt-get
```
bash
$
curl
-s
https://deb.nodesource.com/setup_18.x |
sudo
bash
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment