• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

.github/workflows/H14-Dec-2021-119103

config/H14-Dec-2021-85

lib/H14-Dec-2021-15,34512,774

scripts/H14-Dec-2021-267173

src/H14-Dec-2021-7,6635,808

test/H14-Dec-2021-7,4526,042

.credo.exsH A D14-Dec-20213.9 KiB9487

.formatter.exsH A D14-Dec-202197 98

.gitignoreH A D14-Dec-2021102 109

CHANGELOG.mdH A D14-Dec-202131.9 KiB881586

README.mdH A D14-Dec-20212 KiB4023

RELEASE.mdH A D14-Dec-20212.5 KiB8955

mix-new.lockH A D14-Dec-2021867 109

mix-old.lockH A D14-Dec-2021726 76

mix.exsH A D14-Dec-20214.5 KiB150120

README.md

1# Hex
2
3[![CI](https://github.com/hexpm/hex/workflows/CI/badge.svg)](https://github.com/hexpm/hex/actions)
4
5Hex is package manager for the Erlang VM.
6
7This project currently provides tasks that integrate with Mix, [Elixir](https://github.com/elixir-lang/elixir)'s build tool.
8
9See [hex.pm](https://hex.pm) for installation instructions and other documentation.
10
11## Contributing
12
13Install Hex locally for development with: `mix install`.
14
15### Bundled CA certs
16
17Hex bundles a list of root CA certificates used for certificate validation in HTTPS. The certificates are fetched from [Mozilla's source tree](http://hg.mozilla.org/releases/mozilla-release/raw-file/default/security/nss/lib/ckfw/builtins/certdata.txt) with curl's [mk-ca-bundle.pl](https://github.com/bagder/curl/blob/master/lib/mk-ca-bundle.pl) script. The bundle created from the Perl script is stored in `lib/hex/http/ca-bundle.crt` and is included in source control, the file should be updated when new releases are made by Mozilla. When Hex is compiled the certificates are parsed and included with the compiled artifacts. The task `mix certdata` automates this process.
18
19### hexpm
20
21Integration tests run against the API server [hexpm](https://github.com/hexpm/hexpm). It needs to be cloned into `../hexpm` or `HEXPM_PATH` needs to be set and point its location. hexpm also requires postgresql with username `postgres` and password `postgres`.
22
23Exclude integration tests with `mix test --exclude integration`.
24
25## License
26
27   Copyright 2015 Six Colors AB
28
29   Licensed under the Apache License, Version 2.0 (the "License");
30   you may not use this file except in compliance with the License.
31   You may obtain a copy of the License at
32
33       http://www.apache.org/licenses/LICENSE-2.0
34
35   Unless required by applicable law or agreed to in writing, software
36   distributed under the License is distributed on an "AS IS" BASIS,
37   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
38   See the License for the specific language governing permissions and
39   limitations under the License.
40