Skip to content

Commit

Permalink
- Replace acme_lib with instant-acme, drop OpenSSL dependency #192
Browse files Browse the repository at this point in the history
  • Loading branch information
joepio committed Feb 8, 2023
1 parent c0db207 commit 8e01e28
Show file tree
Hide file tree
Showing 5 changed files with 313 additions and 316 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ See [STATUS.md](server/STATUS.md) to learn more about which features will remain
- Meta tags server side #577
- Include JSON-AD in initial response, speed up first render #511
- Remove feature to index external RDF files and search them #579
- Replace `acme_lib` with `instant-acme`, drop OpenSSL dependency #192

## [v0.34.0] - 2022-10-31

Expand Down
11 changes: 11 additions & 0 deletions CONTRIBUTE.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ Check out the [Roadmap](https://docs.atomicdata.dev/roadmap.html) if you want to

- [Table of contents](#table-of-contents)
- [Running locally](#running-locally)
- [Cross compilation](#cross-compilation)
- [IDE setup (VSCode)](#ide-setup-vscode)
- [Testing](#testing)
- [Code coverage](#code-coverage)
Expand Down Expand Up @@ -45,6 +46,16 @@ Since `atomic-server` is developed in conjunction with the typescript / react `a
- Visit your `localhost` in your locally running `atomic-data-browser` instance: (e.g. `http://localhost:8080/app/show?subject=http%3A%2F%2Flocalhost`)
- use `cargo watch -- cargo run` to automatically recompile `atomic-server` when you push new assets using `pmpm build-server` in `atomic-data-browser`. This can be useful if you're debugging specific features that you can't reproduce while the front-end is hosted in vite.

## Cross compilation

If you want to build `atomic-server` for some other target (e.g. building for linux from macOS), you can use the `cross` crate.

```sh
cargo install cross
# make sure docker is running!
cross build --target x86_64-unknown-linux-musl
```

## IDE setup (VSCode)

This project is primarily being developed in VSCode.
Expand Down
Loading

0 comments on commit 8e01e28

Please sign in to comment.