Skip to content

Commit 7f160e4

Browse files
committed
Rename repo #630
1 parent d0346db commit 7f160e4

31 files changed

+57
-57
lines changed

.github/workflows/release-github.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ jobs:
6868
env:
6969
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
7070
TAURI_PRIVATE_KEY: ${{ secrets.TAURI_PRIVATE_KEY }}
71-
# TODO: https://github.com/atomicdata-dev/atomic-data-rust/issues/237
71+
# TODO: https://github.com/atomicdata-dev/atomic-server/issues/237
7272
# ENABLE_CODE_SIGNING: ${{ secrets.APPLE_CERTIFICATE }}
7373
# APPLE_CERTIFICATE: ${{ secrets.APPLE_CERTIFICATE }}
7474
# APPLE_CERTIFICATE_PASSWORD: ${{ secrets.APPLE_CERTIFICATE_PASSWORD }}

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ See [STATUS.md](server/STATUS.md) to learn more about which features will remain
125125
- Removed system tray from `atomic-server`, since I only want to maintain the Tauri version
126126
- Rename `src-tauri` to `desktop` and make the tauri code part of the cargo workspace
127127
- In Queries, respect a `limit` of `None` and `include_external` #317
128-
- Run end-to-end tests from `atomic-data-browser` in `atomic-data-rust` CI #204
128+
- Run end-to-end tests from `atomic-data-browser` in `atomic-server` CI #204
129129
- Use `nextest` for testing #338
130130
- Improve and monitor test coverage #337
131131
- Fix commit indexing #345

CONTRIBUTE.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
First things first: I'm glad you're reading this!
44
Join our [Discord](https://discord.gg/a72Rv2P) to chat with other people in the Atomic Data community.
5-
If you encounter any issues, add them to the [Github issue tracker](https://github.com/atomicdata-dev/atomic-data-rust/issues).
5+
If you encounter any issues, add them to the [Github issue tracker](https://github.com/atomicdata-dev/atomic-server/issues).
66
Same goes for feature requests.
77
PR's are welcome, too!
88
Note that opening a PR means agreeing that your code becomes distributed under the MIT license.
@@ -91,7 +91,7 @@ npm run test-query {testname}
9191

9292
## Code coverage
9393

94-
- Visible at https://app.codecov.io/gh/atomicdata-dev/atomic-data-rust/
94+
- Visible at https://app.codecov.io/gh/atomicdata-dev/atomic-server/
9595
- Checked in CI
9696

9797
```sh
@@ -146,7 +146,7 @@ We have benchmarks in the `/lib/benchmarks` folder. Make sure there's a benchmar
146146
```sh
147147
# install criterion
148148
cargo install cargo-criterion
149-
# go to atomic-data-rust root folder - don't run benchmarks in `./lib`
149+
# go to atomic-server root folder - don't run benchmarks in `./lib`
150150
cd ..
151151
# run benchmark
152152
cargo criterion
@@ -192,7 +192,7 @@ Note:
192192

193193
Before tagging a new version, make sure to update the `app_assets` folder:
194194

195-
1. Go up one directory from `atomic-data-rust` => `cd ..`
195+
1. Go up one directory from `atomic-server` => `cd ..`
196196
2. In here, clone [atomic-data-browser](https://github.com/atomicdata-dev/atomic-data-browser)
197197
3. Run `./build-server.sh` to compile assets and copy them to your `app_assets` directory
198198
4. Make sure not to commit all the files, manually check them
@@ -231,7 +231,7 @@ or:
231231

232232
#### Deploying to atomicdata.dev
233233

234-
1. Run the [`deploy` Github action](https://github.com/atomicdata-dev/atomic-data-rust/actions/workflows/deployment.yml)
234+
1. Run the [`deploy` Github action](https://github.com/atomicdata-dev/atomic-server/actions/workflows/deployment.yml)
235235

236236
or do it manually:
237237

README.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
[![crates.io](https://img.shields.io/crates/v/atomic-server)](https://crates.io/crates/atomic-server)
44
[![Discord chat](https://img.shields.io/discord/723588174747533393.svg?logo=discord)](https://discord.gg/a72Rv2P)
55
[![MIT licensed](https://img.shields.io/badge/license-MIT-blue.svg)](./LICENSE)
6-
[![github](https://img.shields.io/github/stars/atomicdata-dev/atomic-data-rust?style=social)](https://github.com/atomicdata-dev/atomic-data-rust)
6+
[![github](https://img.shields.io/github/stars/atomicdata-dev/atomic-server?style=social)](https://github.com/atomicdata-dev/atomic-server)
77

88
**Create, share, fetch and model [Atomic Data](https://docs.atomicdata.dev)!
99
AtomicServer is a lightweight, yet powerful CMS / Graph Database.
@@ -93,7 +93,7 @@ You can run AtomicServer in five ways:
9393

9494
1. Using docker (probably the quickest): `docker run -p 80:80 -p 443:443 -v atomic-storage:/atomic-storage joepmeneer/atomic-server`
9595
2. Install a desktop build (macOS only as of now)
96-
3. From a published [binary](https://github.com/atomicdata-dev/atomic-data-rust/releases)
96+
3. From a published [binary](https://github.com/atomicdata-dev/atomic-server/releases)
9797
4. Using [Cargo](https://doc.rust-lang.org/cargo/getting-started/installation.html) from crates.io: `cargo install atomic-server`
9898
5. Manually from source
9999

@@ -109,11 +109,11 @@ The `dockerfile` is located in the project root, above this `server` folder.
109109

110110
### 2. Install desktop build (macOS only)
111111

112-
We automatically build `.dmg` installers for MacOS. You can download them from the [releases page](https://github.com/atomicdata-dev/atomic-data-rust/releases).
112+
We automatically build `.dmg` installers for MacOS. You can download them from the [releases page](https://github.com/atomicdata-dev/atomic-server/releases).
113113

114114
### 3. Run pre-compiled binary
115115

116-
Get the binaries from the [releases page](https://github.com/atomicdata-dev/atomic-data-rust/releases) and copy them to your `bin` folder.
116+
Get the binaries from the [releases page](https://github.com/atomicdata-dev/atomic-server/releases) and copy them to your `bin` folder.
117117

118118
### 4. Install using cargo
119119

@@ -130,8 +130,8 @@ atomic-server
130130
### 5. Compile from source
131131

132132
```sh
133-
git clone git@github.com:atomicdata-dev/atomic-data-rust.git
134-
cd atomic-data-rust/server
133+
git clone git@github.com:atomicdata-dev/atomic-server.git
134+
cd atomic-server/server
135135
cargo run
136136
```
137137

@@ -240,7 +240,7 @@ journalctl -u atomic.service --since "1 hour ago" -f
240240
There are three ways to interact with this server:
241241

242242
- **GUI**: Use the [`atomic-data-browser`](https://github.com/atomicdata-dev/atomic-data-browser) JS frontend by visiting `localhost:9883`.
243-
- **API**: We have a subset of the [API documented using Swagger / OpenAPI](https://editor.swagger.io/?url=https://raw.githubusercontent.com/atomicdata-dev/atomic-data-rust/master/server/openapi.yml). Check out [./_requests.http](./example_requests.http) for various HTTP requests to the server. Also, [read the Atomic Data Docs](https://docs.atomicdata.dev/). You can also try the [react boilerplate](https://codesandbox.io/s/atomic-data-react-template-4y9qu?file=/src/MyResource.tsx:0-1223) to build your own front-end app using [@tomic/lib](https://www.npmjs.com/package/@tomic/lib) and [@tomic/react](https://www.npmjs.com/package/@tomic/react).
243+
- **API**: We have a subset of the [API documented using Swagger / OpenAPI](https://editor.swagger.io/?url=https://raw.githubusercontent.com/atomicdata-dev/atomic-server/master/server/openapi.yml). Check out [./_requests.http](./example_requests.http) for various HTTP requests to the server. Also, [read the Atomic Data Docs](https://docs.atomicdata.dev/). You can also try the [react boilerplate](https://codesandbox.io/s/atomic-data-react-template-4y9qu?file=/src/MyResource.tsx:0-1223) to build your own front-end app using [@tomic/lib](https://www.npmjs.com/package/@tomic/lib) and [@tomic/react](https://www.npmjs.com/package/@tomic/react).
244244
- **CLI**: The [`atomic-cli`](https://crates.io/crates/atomic-cli/0.24.2) terminal app
245245

246246
### Using AtomicServer with the browser GUI
@@ -273,7 +273,7 @@ Try checking out the other features in the menu bar, and check out the `collecti
273273

274274
`atomic-cli` is a useful terminal tool for interacting with `atomic-server`.
275275
It makes it easy to query and edit Atomic Data from the command line.
276-
[Check it out](https://github.com/atomicdata-dev/atomic-data-rust/tree/master/cli).
276+
[Check it out](https://github.com/atomicdata-dev/atomic-server/tree/master/cli).
277277

278278
### API
279279

@@ -291,7 +291,7 @@ curl -i -H "Accept: text/turtle" https://atomicdata.dev/properties/shortname
291291
```
292292

293293
Check out [./example_requests.http](/example_requests.http) for more things that you can do.
294-
We have a subset of the [API documented using Swagger / OpenAPI](https://editor.swagger.io/?url=https://raw.githubusercontent.com/atomicdata-dev/atomic-data-rust/master/server/openapi.yml).
294+
We have a subset of the [API documented using Swagger / OpenAPI](https://editor.swagger.io/?url=https://raw.githubusercontent.com/atomicdata-dev/atomic-server/master/server/openapi.yml).
295295
Also, read the [Atomic Data Docs](https://docs.atomicdata.dev/) to learn more about Collections, Commits, JSON-AD and other concepts used here.
296296

297297
## FAQ & Troubleshooting
@@ -333,7 +333,7 @@ Try re-initializing atomic server `atomic-server --initialize`.
333333
### Can I embed AtomicServer in another application?
334334

335335
Yes. This is what I'm doing with the Tauri desktop distribution of AtomicServer.
336-
Check out the [`desktop`](https://github.com/atomicdata-dev/atomic-data-rust/tree/master/desktop) code for an example!
336+
Check out the [`desktop`](https://github.com/atomicdata-dev/atomic-server/tree/master/desktop) code for an example!
337337

338338
### Where is my data stored on my machine?
339339

cli/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ edition = "2021"
55
license = "MIT"
66
name = "atomic-cli"
77
readme = "README.md"
8-
repository = "https://github.com/atomicdata-dev/atomic-data-rust"
8+
repository = "https://github.com/atomicdata-dev/atomic-server"
99
version = "0.34.4"
1010

1111
[dependencies]

cli/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
[![crates.io](https://img.shields.io/crates/v/atomic-cli)](https://crates.io/crates/atomic-cli)
44
[![Discord chat](https://img.shields.io/discord/723588174747533393.svg?logo=discord)](https://discord.gg/a72Rv2P)
55
[![MIT licensed](https://img.shields.io/badge/license-MIT-blue.svg)](./LICENSE)
6-
[![github](https://img.shields.io/github/stars/atomicdata-dev/atomic-data-rust?style=social)](https://github.com/joepio/aget_basetomic)
6+
[![github](https://img.shields.io/github/stars/atomicdata-dev/atomic-server?style=social)](https://github.com/joepio/aget_basetomic)
77

88
_Status: Beta. [Breaking changes](../CHANGELOG.md) are expected until 1.0._
99

@@ -49,7 +49,7 @@ cargo install atomic-cli
4949
### Build from source
5050

5151
```sh
52-
git clone git@github.com:atomicdata-dev/atomic-data-rust.git
52+
git clone git@github.com:atomicdata-dev/atomic-server.git
5353
cd atomic/cli
5454
# Install atomic to path
5555
cargo install --path ./

cli/wapm.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
description = "Create, share, fetch and model linked Atomic Data!"
33
license = "MIT"
44
name = "atomic"
5-
repository = "https://github.com/atomicdata-dev/atomic-data-rust"
5+
repository = "https://github.com/atomicdata-dev/atomic-server"
66
version = "0.15.0"
77

88
[[module]]

desktop/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ description = "Atomic Server - Tauri desktop"
55
edition = "2021"
66
license = "MIT"
77
name = "atomic-server-tauri"
8-
repository = "https://github.com/atomicdata-dev/atomic-data-rust"
8+
repository = "https://github.com/atomicdata-dev/atomic-server"
99
version = "0.34.2"
1010

1111
[build-dependencies]

desktop/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Atomic-Server Desktop (powered by Tauri)
22

33
Desktop release for Atomic-Server.
4-
[Tauri] takes care of native installers, app icons, system tray icons, menu items, self-update ([issue](https://github.com/atomicdata-dev/atomic-data-rust/issues/158)) and more.
4+
[Tauri] takes care of native installers, app icons, system tray icons, menu items, self-update ([issue](https://github.com/atomicdata-dev/atomic-server/issues/158)) and more.
55

66
```sh
77
# install tauri

desktop/latest-version.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,15 +5,15 @@
55
"platforms": {
66
"darwin": {
77
"signature": "",
8-
"url": "https://github.com/atomicdata-dev/atomic-data-rust/releases/download/v0.31.1/Atomic.Server_0.31.1_aarch64.m1.macbook.dmg"
8+
"url": "https://github.com/atomicdata-dev/atomic-server/releases/download/v0.31.1/Atomic.Server_0.31.1_aarch64.m1.macbook.dmg"
99
},
1010
"linux": {
1111
"signature": "",
12-
"url": "https://github.com/atomicdata-dev/atomic-data-rust/releases/download/v0.31.1/Atomic.Server_0.31.1_linux.m1.macbook.dmg"
12+
"url": "https://github.com/atomicdata-dev/atomic-server/releases/download/v0.31.1/Atomic.Server_0.31.1_linux.m1.macbook.dmg"
1313
},
1414
"win64": {
1515
"signature": "",
16-
"url": "https://github.com/atomicdata-dev/atomic-data-rust/releases/download/v0.31.1/Atomic.Server_0.31.1_win64.macbook.dmg"
16+
"url": "https://github.com/atomicdata-dev/atomic-server/releases/download/v0.31.1/Atomic.Server_0.31.1_win64.macbook.dmg"
1717
}
1818
}
1919
}

0 commit comments

Comments
 (0)