Skip to content

Commit ebaad5a

Browse files
committed
Register endpoint, mail, tokens, #489 #254 #544
1 parent c1f8de7 commit ebaad5a

25 files changed

+1080
-97
lines changed

.vscode/tasks.json

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,23 @@
1515
"group": "build",
1616
"problemMatcher": []
1717
},
18+
{
19+
"label": "watch atomic-server (cargo watch)",
20+
"type": "shell",
21+
"command": "~/.cargo/bin/cargo-watch",
22+
"args": [
23+
"--",
24+
"cargo",
25+
"run",
26+
"--bin",
27+
"atomic-server",
28+
"--",
29+
"--env-file",
30+
"server/.env",
31+
],
32+
"group": "build",
33+
"problemMatcher": []
34+
},
1835
{
1936
"label": "test atomic-server (cargo nextest run)",
2037
"type": "shell",

CHANGELOG.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,8 +86,8 @@ See [STATUS.md](server/STATUS.md) to learn more about which features will remain
8686
- Refactor `Endpoint` handlers, uses a Context now #592
8787
- Re-build store + invite when adjusting server url #607
8888
- Use local atomic-server for properties and classes, improves atomic-server #604
89+
- New sign up / register flow. Add `/register` Endpoint #489 #254
8990
- Add multi-tenancy support. Users can create their own `Drives` on subdomains. #288
90-
- Add `/register` Endpoint #489 #254
9191
- Refactor URLs. `store.self_url()` returns an `AtomicUrl`, which provides methods to easily add paths, find subdomains and more.
9292
- Add support for subdomains, use a Wildcard TLS certificate #502
9393

@@ -96,6 +96,11 @@ See [STATUS.md](server/STATUS.md) to learn more about which features will remain
9696
- Replace `acme_lib` with `instant-acme`, drop OpenSSL dependency, add DNS verification for TLS option with `--https-dns` #192
9797
- Improved error handling for HTTPS initialization #530
9898
- Add `--force` to `atomic-server import` #536
99+
- Email support. Connect to external SMTP servers. #276
100+
- Basic plugin support through Endpoints. For now only works if you use `**Atomic**-Lib` as a library. Add your plugins by calling `Db::register_endpoint`.
101+
- Allow parsing `.env` files from custom locations using the `--env-file` flag.
102+
- Plugins support `tokio`, so you can spawn async tasks from plugins.
103+
- Add JWT token support, used for emails and registration #544
99104
- Fix index issue happening when deleting a single property in a sorted collection #545
100105
- Update JS assets & playwright
101106
- Fix initial indexing bug #560

CONTRIBUTING.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,7 @@ TL;DR Clone the repo and run `cargo run` from each folder (e.g. `cli` or `server
4949
- Go to `browser`, run `pnpm install` (if you haven't already), and run `pnpm dev` to start the browser
5050
- Visit your `localhost` in your locally running `atomic-data-browser` instance: (e.g. `http://localhost:5173/app/show?subject=http%3A%2F%2Flocalhost`)
5151
- use `cargo watch -- cargo run` to automatically recompile `atomic-server` when you update JS assets in `browser`
52+
- use `cargo watch -- cargo run --bin atomic-server -- --env-file server/.env` to automatically recompile `atomic-server` when you update code or JS assets.
5253

5354
### IDE setup (VSCode)
5455

0 commit comments

Comments
 (0)