Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
openairinterface5G
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Model registry
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
oai
openairinterface5G
Commits
a6576db5
Commit
a6576db5
authored
6 months ago
by
Thomas Laurent
Browse files
Options
Downloads
Patches
Plain Diff
websrv regression
parent
e15fa14c
No related branches found
No related tags found
2 merge requests
!3053
Integration: `2024.w42`
,
!2997
websrv regression
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
common/utils/websrv/CMakeLists.txt
+1
-1
1 addition, 1 deletion
common/utils/websrv/CMakeLists.txt
common/utils/websrv/DOC/websrvuse.md
+24
-0
24 additions, 0 deletions
common/utils/websrv/DOC/websrvuse.md
with
25 additions
and
1 deletion
common/utils/websrv/CMakeLists.txt
+
1
−
1
View file @
a6576db5
...
...
@@ -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 ../../..
)
...
...
This diff is collapsed.
Click to expand it.
common/utils/websrv/DOC/websrvuse.md
+
24
−
0
View file @
a6576db5
...
...
@@ -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
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment