Personal Data & Privacy Management Software
A ready-to-use solution for personal data and consent management.
Pryv.io is a solid foundation on which you build your own digital health solution, so you can collect, store, share and rightfully use personal data.
Maintained and developed by Pryv.
Open-Pryv.io is recognized as a digital public good by DPGAlliance a UN-endorsed initiative that facilitates the discovery and deployment of open-source technologies.
- Provides latest Pryv.io core system ready for production
- User registration and authentication
- Granular consent-based access control rights
- Data model made for privacy, aggregation and sharing Data in Pryv
- Full data life-cycle: collect - store - change - delete
- REST & Socket.io API
- Ease of software integration and configuration
- Seamless connectivity and interoperability
- API Documentation & Guides: pryv.github.io
- Support: https://github.com/orgs/pryv/discussions
- More information about Pryv : Pryv Home
- Choose your setup
- Download the required files / Run the installation scripts
- Edit the configuration files
- Start the services
- Try the API
- Customize your platform
Pryv.io is designed to be exposed by a third party SSL termination such as NGINX.
Choose your Set-up
- Discover Open Pryv.io on your local environment, this will only allow localhost apps to connect to your platform.
- Download docker images without SSL (quick start)
- Download docker images with SSL
- Native installation
- Launch Pryv.io on a server exposed to the Internet with built-in SSL, this requires to have a hostname pointing to the public IP of your server.
- Download docker images (quick start)
- Native installation
- Launch Pryv.io on a server with an external SSL termination. You know what you are doing.
- Download docker images
- Native installation
The dockerized versions and their instructions are available at this link: Download link.
If you wish to build the images yourself, refer to the following README: docker/README-build.md.
Once it is running, you can continue with the tutorials.
Prerequisites:
- Node v18.14.2 Node.js home page
The installation script has been tested on Linux Ubuntu 18.04 LTS and MacOSX.
npm run setup-dev-env
to setup local file structurenpm install
to install node modules
Each service independently - logs will be displayed on the console
npm run database
start mongodb or start ferretDBnpm run api
start the API server on port 3000 (default)npm run mail
start the mail service
backloop.dev certificates facilitate local developpment by enabling https on localhost.
npm run database
to start mongodb or start ferretDB- (optional)
npm run mail
start the mail service npm run apibackloop
to start api server usingconfigs/api-backloop.yml
You can now access you API from you own computer with SSL on
https://my-computer.backloop.dev:4443
You can check by opening https://my-computer.backloop.dev:4443/reg/service/info
And create new users or access token from the Pryv Access Token Generation Page
- Edit
http:ssl
part in./configs/api.yml
file to point to your certificates an key files. - Update
dnsLess:publicUrl
in./configs/api.yml
to match - Run
npm run pryv
to start the API
For the native installation, edit ./configs/api.yml
dnsLess:
publicUrl: http://localhost:3000
http:
port: 3000
ip: 127.0.0.1
auth:
adminAccessKey: REPLACE_ME
trustedApps: "*@https://pryv.github.io*, *@https://*.rec.la*, *@https://*.backloop.dev*"
eventFiles:
attachmentsDirPath: var-pryv/attachment-files
service:
name: Open-Pryv.io
support: https://pryv.com/open-pryv-non-configured-page/
terms: https://pryv.com/open-pryv-non-configured-page/
home: https://pryv.com/open-pryv-non-configured-page/
eventTypes: https://pryv.github.io/event-types/flat.json
services:
email:
enabled:
welcome: true
resetPassword: true
- publicUrl Is the "Public" URL to reach the service, usually exposed in https by a third party SSL service such as NGNIX.
- http
- port The local port to listen
- ip The IP adress to use. Keep it 127.0.0.1 unless you explicitely want to expose the service in
http
to another network.
- auth
- adminAccesskey key to use for system calls such as
/reg/admin/users
. A random key should be generated on setup. - trustedApps list of web apps that can be trusted-app functionalities API for trusted apps: API reference see: SETUP Guide - customize authentication
- adminAccesskey key to use for system calls such as
- service API documentation on Service Information
- services:email see Options & Customization below
At this moment you should have your application running on the public URL you defined.
- Create an account and launch the authentication process on App-Web-Access: https://pryv.github.io/app-web-access/?pryvServiceInfoUrl=https://my-computer.backloop.dev:4443/reg/service/info.
- The service info URL to your platform is: https://my-computer.backloop.dev:4443/reg/service/info
If you are using another public URL, replace https://my-computer.backloop.dev:4443
by it in the link above.
Data in Pryv is stored in streams and events. We provide you with all necessary information to design your own data model in our Data Modelling Guide through a broad range of use cases and scenarios you might encounter.
After this process, you should have an account on your Open Pryv.io platform with a valid authorization token in the form of an API endpoint, you can try various API requests using Postman following this guide https://pryv.github.io/open-api/.
You can also try our example apps with guides and tutorials.
Read README-DBs for more information.
Open Pryv.io comes packaged with app-web-auth3, the default web pages for app authentication, user registration and password reset.
During the set-up process it has been built and published in public_html/access/
. To customize it, refer to its README
in app-web-auth3/
.
To use a new build, simply copy the contents of the generated files from app-web-auth3/dist/
to public_html/access/
Open Pryv.io comes with default event types.
The default ones are fetched at boot from the URL defined in service:eventTypes in the .yml
config file, set to https://pryv.github.io/event-types/flat.json.
To customize your own, clone the Data Types repository and follow the guide there.
By default the MongoDB data are stored in var-pryv/mongodb-data
. If you want to modify the folder where the MongoDB data files are stored, read ferretDB README.
By default the FerretDB data are stored in var-pryv/ferretdb-data
. If you want to modify the folder where the FerretDB data files are stored, you can modify in scripts/setup-mongodb
the variable MONGO_DATA_FOLDER
.
Your platforms visuals can be customized in public_html/assets/
, please refer to the README inside. These assets are a clone of the assets-open-pryv.io.
Pryv.io can send e-mails at registration and password reset request.
The emails can be sent either by local sendmail (default) or SMTP.
This service, its documentation and mail templates can be found in service-mail/
.
Prerequisites:
- rsync
To make a backup of your data:
Run ./scripts/backup-database-native ${BACKUP_FOLDER}
to generate a dump of the current database contents
Run ./scripts/backup-usersfiles-native ${BACKUP_FOLDER}
to copy the current usersfiles files.
To restore the database, run ./scripts/restore-database-native ${BACKUP_FOLDER}
to restore data from the provided backup folder.
To restore attachments, run ./scripts/restore-usersfiles-native ${BACKUP_FOLDER}
to restore data from the provided backup folder.
Depending on your setup, you may need additional access rights.
Follow the guide in the docker package.
Contributions are welcome. Get in touch with the Pryv team or submit a PR with your changes or adaptation.
Copyright (c) 2019-2023 Pryv S.A. https://pryv.com
This file is part of Open-Pryv.io and released under BSD-Clause-3 License
Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
-
Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
-
Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.
-
Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
SPDX-License-Identifier: BSD-3-Clause