- Notifications
You must be signed in to change notification settings - Fork0
Search and browse documents and data; find the people and companies you look for.
License
adryd325/aleph
Folders and files
Name | Name | Last commit message | Last commit date | |
---|---|---|---|---|
Repository files navigation
Truth cannot penetrate a closed mind. If all places in the universe are inthe Aleph, then all stars, all lamps, all sources of light are in it, too.
Aleph is a tool for indexing large amounts of both documents (PDF, Word,HTML) and structured (CSV, XLS, SQL) data for easy browsing and search. It isbuilt with investigative reporting as a primary use case. Aleph allowscross-referencing mentions of well-known entities (such as people andcompanies) against watchlists, e.g. from prior research or public datasets.
For further details on the software, how to use it, install it or manage dataimports, please check the documentation at:
- https://docs.alephdata.org
- Installation:https://docs.alephdata.org/developers/installation
- Changes:https://docs.alephdata.org/developers/changelog
Aleph is used and developed by multiple organisations and interested individuals.If you're interested in participating in this process, please read the supportpolicy (SUPPORT.md), the contribution rules (CONTRIBUTING.md), and the code of conduct (CODE_OF_CONDUCT.md) and then getin touch:
If you are interested in, or have been tasked with releasing a new version of Aleph. The following steps should be followed:
The basic process for releasing Aleph is this:
- Check internal libraries for updates and merge. Release our libraries in the following order
- servicelayer
- followthemoney
- ingest-file
- react-ftm
- Ensure that all libraries for a release are up to date in aleph and merged to the develop branch.
- Ensure that any features, bugfixes are merged into develop and that all builds are passing
- Ensure that the CHANGELOG.md file is up to date on the develop branch. Add information as required.
- Create a RC release of Aleph.
- Test and verify the RC. Perform further RC releases as required.
- Merge all changes to main
- Create a final version of Aleph
As far as possible apply the rules of semantic versioning when determining the type of release to perform.
If you need to perform an RC release of Aleph, follow these steps:
- Ensure that the CHANGELOG` is up to date on the develop branch and that all outstanding PR's have been merged
- From the develop branch run bump2version (major, minor, patch) this will create a x.x.x-rc1 version of aleph
- push the tags to the remote with git push --tags
- push the version bump with git push
- If there are problems with the RC you can fix them and use bump2version build to generate new rc release
- switch to main and pull from remote
- If not already done merge develop into main
- Update translations using make translate
- If you get npm errors, go into the ui folder and run npm install
- commit translations to main and push to remote
- run bump2version --verbose --sign-tags release. Note that bump2version won't show changes when you make the change, but it will work (see git log to check)
- push the tags to the remote with git push --tags
- push version bump to remote with git push
- merge main back into develop. Slightly unrelated to the release process but this is a good time to do it so that the new version numbers appear in develop as well