The Sampo-UI framework is being developed by the Semantic Computing Research Group (SeCo) at the Aalto University, Finland. See the research page for more information plus instructions and tutorials. The Ghent Centre for Digital Humanities - Ghent University contributed to Sampo-UI. The GhentCDH contributions are funded by the Clariah-VL+ IRI.
Copy the content of example.env into your own .env file. Note that if you need additional env variables that you
need to add them to compose.yaml as well.
Then run:
docker compose up
to run both client and server in development mode.
To build client and server images run:
docker compose -f compose-prod.yaml build To run prod containers make sure you again have a .env with your API_URL and all other env variables you need. Again
note that if you need additional env variables that you need to add them to compose-prod.yaml as well.
Then run:
docker compose -f compose-prod.yaml upThe JavaScript style guide, linter, and formatter module (named "standard" in package.json) is installed by default as development dependency. Do not install or create any additional style definitions or configurations. Instead, install an appropriate plugin for your text editor. If there are no plugins available for your favorite editor, it is highly recommended to switch into a supported editor.
Sampo-UI's React components are documented here using Storybook.
Here is a list of the main JavaScript libraries on which the Sampo-UI client is built on:
- React – A JavaScript library for building user interfaces
- Material-UI – React components for faster and easier web development
- Redux – A Predictable State Container for JS Apps
- redux-observable – RxJS-based middleware for Redux
- Reselect – Selector library for Redux
- React Router – Declarative routing for React
- react-intl-universal – React internationalization package developed by Alibaba Group
- deck.gl – Large-scale WebGL-powered Data Visualization
- react-map-gl – React friendly API wrapper around MapboxGL JS
- Leaflet – a JavaScript library for interactive maps
- Cytoscape – an open source software platform for visualizing complex networks
- ApexCharts.js – Open Source JavaScript Charts for your website
- React Sortable Tree – A React component for representation of hierarchical data
- Moment.js – Parse, validate, manipulate, and display dates and times in JavaScript
The API provided by Sampo-UI's backend includes routes for the following search paradigms: faceted search, full text search, and federated full text or spatial search. The API is described using the OpenAPI Specification. The same specification is used for both documenting the API, and validating the API requests and responses.
An API documentation with example configuration can been seen here.
Sampo-UI's backend is based on the following JavaScript libraries:
- Express – Fast, unopinionated, minimalist web framework for Node.js
- axios – Promise based HTTP client for the browser and Node.js
- Lodash – A modern JavaScript utility library delivering modularity, performance & extras
In GitHub it's not possible to fork an organization's repository to that same organization. If a new repository needs to be created using the SemanticComputing organization account, here is an alternative workflow for forking:
-
Clone this repository:
git clone git@github.com:SemanticComputing/sampo-ui.git -
Set up a new GitHub repository. Do not initialize it with anything. It needs to be an empty repository. You can name it how you like and you can rename your local folder to match that.
-
Copy the url of your new repository.
-
With terminal go to the folder with the clone of this repository (sampo-ui).
-
Change remote origin from sampo-ui to your new repository:
git remote set-url origin [your new github repo here] -
Check that the origin changed to your new repository:
git remote -v -
Push your local clone of sampo-ui to your new repository:
git push -
Set sampo-ui as the upstream of your new repository:
git remote add upstream git@github.com:SemanticComputing/sampo-ui.git -
When new commits appear on the sampo-ui repository you can fetch them to your new repository. The example fetches only master branch:
git fetch upstream master -
Go to the branch of your new repository where you want to merge the changes in upstream. Merge, solve conflicts and enjoy:
git merge upstream/master