Skip to content

Commit

Permalink
#67 miss info about licence for new files
Browse files Browse the repository at this point in the history
  • Loading branch information
Marcellino-Palerme committed Dec 6, 2024
1 parent af484b2 commit 4094aad
Show file tree
Hide file tree
Showing 3 changed files with 30 additions and 14 deletions.
34 changes: 20 additions & 14 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,20 +5,24 @@ SPDX-FileContributor: Marcellino Palerme <[email protected]>
SPDX-License-Identifier: MIT
-->

# EP2M2 : Metabolomic Target Analyzes Manager.
# EP2M2 : Metabolomic Target Analyzes Manager

## Version
__0.3.1__

0.3.1

## Reuse compliance

<!--REUSE--></br>
[![Reuse compliant](./badges/reuse_compliant.svg)](https://github.com/p2m2/EP2M2/actions/runs/12184248000)<!--REUSE-END-->

## Tests

<!--GAMFC--></br>
[![result](./badges/tests-result.svg) ![total](./badges/tests-total.svg) ![passed](./badges/tests-passed.svg) ![failed](./badges/tests-failed.svg) ![todo](./badges/tests-todo.svg)](https://github.com/p2m2/EP2M2/actions/runs/12184248000) </br>[![Branches](./badges/coverage-branches.svg) ![Functions](./badges/coverage-functions.svg) ![Lines](./badges/coverage-lines.svg)![Statements](./badges/coverage-statements.svg) ![Coverage total](./badges/coverage-total.svg)](https://github.com/p2m2/EP2M2/actions/runs/12184248000)<!--GAMFC-END-->

## Features

- Extraction of formats files of the metabolomics data acquisition devices of the P2M2 platform
- gcms
- openlabcds
Expand All @@ -35,6 +39,7 @@ __0.3.1__
## Installation

### Requirements

- adminitrator rights
- docker
- docker-compose
Expand All @@ -45,24 +50,25 @@ __0.3.1__
1. Clone the repository
2. Define user and password for the database and the database name

```bash
cd EP2M2
echo "PGUSER=<user_name>" > ./secrets/pg.env
echo "PGPASSWORD=<password>" >> ./secrets/pg.env
echo "PGDATABASE=<database_name>" >> ./secrets/pg.env
echo "POSTGRES_USER=\$PGUSER" >> ./secrets/pg.env
echo "POSTGRES_PASSWORD=\$PGPASSWORD" >> ./secrets/pg.env
echo "POSTGRES_DB=\$PGDATABASE" >> ./secrets/pg.env
```
```bash
cd EP2M2
echo "MY_PG_USER=<user_name>" > ./secrets/global.env
echo "MY_PG_PASSWORD=<password>" >> ./secrets/global.env
echo "MY_PG_DATABASE=<database_name>" >> ./secrets/global.env
echo "MY_PG_PORT=<port>" >> ./secrets/global.env
```

3. Launch the docker-compose

```bash
docker compose -f compose.yaml up -d
```
```bash
docker compose -f compose.yaml up -d
```

## Contibution

[let's go](./doc/contribution.md)

## Report issue

- Directly on github
- Send e-mail at [team](mailto:[email protected])
5 changes: 5 additions & 0 deletions environment/pg.env
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
# © 2024 INRAE
# SPDX-FileContributor: Marcellino Palerme <[email protected]>

# SPDX-License-Identifier: MIT

POSTGRESQL_PASSWORD=$MY_PG_PASSWORD
POSTGRESQL_USER=$MY_PG_USER
POSTGRESQL_PORT=$MY_PG_PORT
Expand Down
5 changes: 5 additions & 0 deletions environment/pg_web.env
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
# © 2024 INRAE
# SPDX-FileContributor: Marcellino Palerme <[email protected]>

# SPDX-License-Identifier: MIT

PGUSER=$MY_PG_USER
PGPASSWORD=$MY_PG_PASSWORD
PGDATABASE=$MY_PG_DATABASE
Expand Down

0 comments on commit 4094aad

Please sign in to comment.