Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
26 changes: 13 additions & 13 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,26 +1,26 @@
# FREYJA

## OFFICIAL DOCUMENTATION
## Official Documentation

Github Pages coming soon !
[Read the official documentation here !](https://thalesgroup.github.io/freyja/)

Meanwhile, read the documentation [here](./docs)

## DEVELOPMENT REQUIREMENTS
## Developer requirements

* Python (version >= 3.9)
* Poetry (version >= 1.3.2)
* [Poetry (version >= 1.3.2)](https://python-poetry.org/docs/#installation)

## Build

## BUILD
Build a development version :

```sh
./build.sh
```

## CORE TEAM
## Dev installation

Install locally the development version :

* Project Management Committee:
* **louis.cailliot@thalesgroup.com**
* Committers:
* **louis.cailliot@thalesgroup.com**
* **nicolas.peiffer@thalesgroup.com**
```sh
./install.sh
```
6 changes: 3 additions & 3 deletions docs/requirements/python_poetry_install.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ sudo apt install python3.9
Install Poetry :

```sh
curl -sSL https://raw.githubusercontent.com/python-poetry/poetry/master/get-poetry.py | python3.9 -
source $HOME/.poetry/env
poetry --version
# poetry is installed in $HOME/.local/bin
curl -sSL https://install.python-poetry.org | python3 -
export PATH="$HOME/.local/bin:$PATH"
```
Loading