Skip to content

Commit 0d13b0e

Browse files
committed
Refine basic key files
Signed-off-by: Philippe Ombredanne <[email protected]>
1 parent 01133a3 commit 0d13b0e

File tree

5 files changed

+21
-13
lines changed

5 files changed

+21
-13
lines changed

AUTHORS.rst

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
11
The following organizations or individuals have contributed to this repo:
22

3-
-
3+
- @ziadhany Ziad Hany
4+
- @AboutCode-org
5+
- @pombredanne Philippe Ombredanne

CHANGELOG.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ Changelog
22
=========
33

44

5-
v0.0.0
5+
v0.0.1
66
------
77

8-
*xxxx-xx-xx* -- Initial release.
8+
- 2024-05-31 -- Initial release.

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
#
22
# Copyright (c) nexB Inc. and others. All rights reserved.
3-
# VulnerableCode is a trademark of nexB Inc.
3+
# FederatedCode is a trademark of nexB Inc.
44
# SPDX-License-Identifier: Apache-2.0
55
# See http://www.apache.org/licenses/LICENSE-2.0 for the license text.
6-
# See https://github.com/nexB/vulnerablecode for support or download.
6+
# See https://github.com/nexB/federatedcode for support or download.
77
# See https://aboutcode.org for more information about nexB OSS projects.
88
#
99
FROM python:3.10

README.rst

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,10 @@
11
==============
22
FederatedCode
33
==============
4-
FederatedCode is a decentralized, federated metadata about software applications
4+
5+
FederatedCode is a decentralized, federated metadata system for open source software code and
6+
security information.
7+
58

69
===================
710
Quick Installation
@@ -15,8 +18,11 @@ On a Debian system, use this::
1518
source venv/bin/activate
1619
make run
1720

21+
1822
Acknowledgements
1923
^^^^^^^^^^^^^^^^
20-
This project was funded through the NGI0 Entrust Fund, a fund established by NLnet with financial support from the European Commission's Next Generation Internet programme, under the aegis of DG Communications Networks, Content and Technology under grant agreement No 101069594.
24+
This project was funded through the NGI0 Entrust Fund, a fund established by NLnet with financial
25+
support from the European Commission's Next Generation Internet programme, under the aegis of DG
26+
Communications Networks, Content and Technology under grant agreement No 101069594.
2127

2228
https://nlnet.nl/project/FederatedSoftwareMetadata/

docker-compose.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
version: '3'
22

33
services:
4-
db:
4+
federatedcode_db:
55
image: postgres:16
66
env_file:
77
- docker.env
88
volumes:
9-
- db_data:/var/lib/postgresql/data/
9+
- federatedcode_db_data:/var/lib/postgresql/data/
1010
federatedcode:
1111
build: .
1212
command: /bin/sh -c "
@@ -24,8 +24,8 @@ services:
2424
- static:/var/federatedcode/static/
2525
- /etc/federatedcode/:/etc/federatedcode/
2626
depends_on:
27-
- db
28-
nginx:
27+
- federatedcode_db
28+
federatedcode_nginx:
2929
image: nginx
3030
env_file:
3131
- docker.env
@@ -34,7 +34,7 @@ services:
3434
depends_on:
3535
- federatedcode
3636
volumes:
37-
db_data:
38-
static:
37+
federatedcode_db_data:
38+
federatedcode_static:
3939
federatedcode:
4040

0 commit comments

Comments
 (0)