All Projects → fossology → FOSSologyUI

fossology / FOSSologyUI

Licence: GPL-2.0 license
Repository to hold the new UI framework for FOSSology built with React

Programming Languages

HTML
75241 projects
javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to FOSSologyUI

Fossology
FOSSology is an open source license compliance software system and toolkit. As a toolkit you can run license, copyright and export control scans from the command line. As a system, a database and web ui are provided to give you a compliance workflow. License, copyright and export scanners are tools used in the workflow.
Stars: ✭ 440 (+1157.14%)
Mutual labels:  compliance, license
Ort
A suite of tools to assist with reviewing Open Source Software dependencies.
Stars: ✭ 446 (+1174.29%)
Mutual labels:  compliance, license
Scancode Toolkit
🔎 ScanCode detects licenses, copyrights, package manifests & dependencies and more by scanning code ... to discover and inventory open source and third-party packages used in your code.
Stars: ✭ 1,134 (+3140%)
Mutual labels:  compliance, license
havengrc
☁️Haven GRC - easier governance, risk, and compliance 👨‍⚕️👮‍♀️🦸‍♀️🕵️‍♀️👩‍🔬
Stars: ✭ 83 (+137.14%)
Mutual labels:  compliance
guardian
Guardian is a tool for extensible and universal data access with automated access workflows and security controls across data stores, analytical systems, and cloud products.
Stars: ✭ 127 (+262.86%)
Mutual labels:  compliance
pre-commit-hooks
git pre-commit hooks
Stars: ✭ 71 (+102.86%)
Mutual labels:  license
terraform-aws-config
This module configures AWS Config, a service that enables you to assess, audit, and evaluate the configurations of your AWS resources.
Stars: ✭ 24 (-31.43%)
Mutual labels:  compliance
python-license-check
Check python packages from requirement.txt and report issues
Stars: ✭ 111 (+217.14%)
Mutual labels:  license
lisense
Sensible repository licensing for Humans
Stars: ✭ 23 (-34.29%)
Mutual labels:  license
forge
ISC Forge is an open source DHCP conformance validation framework, primarily used for testing ISC Kea.
Stars: ✭ 26 (-25.71%)
Mutual labels:  compliance
autogen
Automatically generate boilerplate license comments.
Stars: ✭ 76 (+117.14%)
Mutual labels:  license
ticket-check-action
Verify that pull request titles start with a ticket ID
Stars: ✭ 29 (-17.14%)
Mutual labels:  compliance
EmptyLicensesLicx
Easy continuous integration of apps using third-party controls that rely on licenses.licx files
Stars: ✭ 57 (+62.86%)
Mutual labels:  license
LOCKLEVEL
A prototype that demonstrates a method for scoring how well Windows systems have implemented some of the top 10 Information Assurance mitigation strategies. #nsacyber
Stars: ✭ 98 (+180%)
Mutual labels:  compliance
before-you-ship
merged into the TTS Handbook
Stars: ✭ 39 (+11.43%)
Mutual labels:  compliance
License
常见的开源协议
Stars: ✭ 85 (+142.86%)
Mutual labels:  license
intercept
INTERCEPT / Policy as Code Static Analysis Auditing / SAST
Stars: ✭ 54 (+54.29%)
Mutual labels:  compliance
wazuh-packages
Wazuh - Tools for packages creation
Stars: ✭ 54 (+54.29%)
Mutual labels:  compliance
license-checker-php
CLI tool to verify used licenses in composer dependencies
Stars: ✭ 28 (-20%)
Mutual labels:  license
cscanner
An open source, multi-cloud DevSecOps compliance checker
Stars: ✭ 19 (-45.71%)
Mutual labels:  compliance

FOSSology UI

GPL-2.0 Slack Channel YouTube Channel

About FOSSology

FOSSology is an open source license compliance software system and toolkit. As a toolkit, you can run license, copyright and export control scans from the command line. As a system, a database and web UI are provided to give you a compliance workflow. In one click you can generate an SPDX file or a ReadMe with all the copyrights notices from your software. FOSSology deduplication means that you can scan an entire distro, rescan a new version, and only the changed files will get rescanned. This is a big time saver for large projects.

Check out Who Uses FOSSology!

FOSSology does not give legal advice. https://fossology.org/

Overview

The UI Migration project is an effort focused on generating the new component-based architecture with the integration of the APIs. To make the project more efficient and easily accessible, an entire code base shift from Symfony-Twig to React.js is proposed. React.js features an incrementally adaptable architecture that focuses on declarative rendering and component composition. React.js component system will enable us to organize the current working APIs appropriately.

Objectives

  • Working on good interactive design, with a modern look.
  • Integrating the APIs to the new component-based UI structure.
  • Seamless routing and page transitions.
  • Giving the power of the node engine to our UI. Making all NPM accessible.
  • Writing detailed ​ documentation of the project, to make the codebase simpler for other contributors.

Requirements

Installation

Docker

Development

FOSSology comes with a Dockerfile allowing for containerized execution.

This method only requires that you have the Docker engine and docker-compose installed on your machine.

  • Added benefits to this method other than the ones that docker already provides is you are not confined to developing in the docker container. You can also develop using your local modules as defined above.
docker-compose -f docker-compose.dev.yml pull fossology_server && docker-compose -f docker-compose.dev.yml up     #Starts the react-dev-server on localhost:3000

On Windows you might have to forego the && and run both commands individually.

Running the docker-compose pull ... command each time you run the docker container isn't required but recommended so as to get the latest fossology image.

This will start the react-dev-server on localhost on port:3000.

The docker image can then be used using http://IP_OF_DOCKER_HOST:3000/ user fossy password fossy. (IP_OF_DOCKER_HOST is generally localhost)

You can even run it detached in the background using the -d option.

docker-compose -f docker-compose.dev.yml up -d
docker-compose logs  #To view server logs

npm packages can be installed using docker-compose exec

docker-compose -f docker-compose.dev.yml exec -w /usr/src/fossologyui fossologyui_server yarn add --save <package name> #Install npm package for react-dev-server

Once done developing, you can clean up running containers and networks using:

docker-compose -f docker-compose.dev.yml down

Production

For production level deployment you can use:

docker build \
-t fossologyui:react1.0 \
--build-arg REACT_APP_SERVER_URL="localhost/repo/api/v2" \
--build-arg REACT_APP_HTTPS="false" .

for building the image and then host the image using:

docker run -p 3000:3000 fossologyui:react1.0

The docker image would then be hosted on http://IP_OF_DOCKER_HOST:3000/ user fossy password fossy. (IP_OF_DOCKER_HOST is generally localhost)

Alternatively, you can also deploy it using docker-compose:

docker-compose up

You can even run it detached in the background using the -d option.

docker-compose up -d
docker-compose logs  #To view server logs

Deployed image can be pulled down using:

docker-compose down

This will clean up running containers and networks.

Project Setup

  • Create a .env in root directory of project and copy the contents from .env.sample

  • Installs the packages:

 yarn
yarn start

Deployment

Launches the test runner in the interactive watch mode. See the section about running tests for more information.

yarn test

Builds the app for production to the build folder.

yarn build

It correctly bundles React in production mode and optimizes the build for the best performance.

The build is minified and the filenames include the hashes. Your app is ready to be deployed! See the section about deployment for more information.

Support

Mailing lists, FAQs, Release Notes, and other useful info is available by clicking the documentation tab on the project website. We encourage all users to join the mailing list and participate in discussions. There is also a #fossology IRC channel on the freenode IRC network if you'd like to talk to other FOSSology users and developers. See Contact Us

Contributing

We really like contributions in several forms, see CONTRIBUTING.md

Licensing

FOSSology and FOSSologyUI are licensed under GPL-2.0

This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; version 2 of the License

This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
GNU General Public License for more details.

You should have received a copy of the GNU General Public License along
with this program; if not, write to the Free Software Foundation, Inc.,
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.

Please see the LICENSE file included with this software for the full texts of these licenses.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].