Skip to content

Commit

Permalink
chore: move to homestar, with cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
zeeshanlakhani committed Feb 28, 2023
1 parent 684a978 commit 7d7ca76
Show file tree
Hide file tree
Showing 65 changed files with 465 additions and 804 deletions.
2 changes: 1 addition & 1 deletion .env
Original file line number Diff line number Diff line change
@@ -1 +1 @@
DATABASE_URL=ipvm.db
DATABASE_URL=homestar.db
2 changes: 1 addition & 1 deletion .envrc
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
use_flake

export RUST_LOG=ipvm=info,sqlx=warn,atuin_client=warn
export RUST_LOG=homestar=debug,sqlx=warn,atuin_client=warn,libp2p=debug
export RUST_BACKTRACE=1
6 changes: 3 additions & 3 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ version: 2

updates:
- package-ecosystem: "cargo"
directory: "/ipvm"
directory: "/homestar"
commit-message:
prefix: "chore"
include: "scope"
Expand All @@ -16,7 +16,7 @@ updates:
interval: "weekly"

- package-ecosystem: "cargo"
directory: "/ipvm-guest-wasm"
directory: "/homestar-guest-wasm"
commit-message:
prefix: "chore"
include: "scope"
Expand All @@ -25,7 +25,7 @@ updates:
interval: "weekly"

- package-ecosystem: "cargo"
directory: "/ipvm-wasm"
directory: "/homestar-wasm"
commit-message:
prefix: "chore"
include: "scope"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:
- name: Generate Code coverage
env:
CARGO_INCREMENTAL: '0'
LLVM_PROFILE_FILE: "ipvm-%p-%m.profraw"
LLVM_PROFILE_FILE: "homestar-%p-%m.profraw"
RUSTFLAGS: '-Zprofile -Ccodegen-units=1 -Cinline-threshold=0 -Clink-dead-code -Coverflow-checks=off -Cpanic=abort -Zpanic_abort_tests'
RUSTDOCFLAGS: '-Zprofile -Ccodegen-units=1 -Cinline-threshold=0 -Clink-dead-code -Coverflow-checks=off -Cpanic=abort -Zpanic_abort_tests'
run: cargo test --all-features
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,11 +43,11 @@ jobs:
- name: Docker Build
uses: docker/build-push-action@v4
with:
cache-from: type=registry,ref=ghcr.io/${{ github.repository_owner }}/ipvm:latest
cache-to: type=registry,ref=ghcr.io/${{ github.repository_owner }}/ipvm:latest,mode=max
cache-from: type=registry,ref=ghcr.io/${{ github.repository_owner }}/homestar:latest
cache-to: type=registry,ref=ghcr.io/${{ github.repository_owner }}/homestar:latest,mode=max
file: docker/Dockerfile
context: .
platforms: linux/amd64, linux/arm64
push: false
tags: |
${{ github.repository_owner }}/ipvm:latest
${{ github.repository_owner }}/homestar:latest
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
github.event_name == 'workflow_dispatch' || github.event.workflow_run.conclusion == 'success'
outputs:
releases_created: ${{ steps.release.outputs['ipvm--release_created'] || steps.release.outputs['ipvm-wasm--release_created'] }}
releases_created: ${{ steps.release.outputs['homestar--release_created'] || steps.release.outputs['homestar-wasm--release_created'] }}

steps:
- name: Run release-please
Expand Down
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -16,3 +16,6 @@ private
*.tmp
.history
.DS_Store

# locks
homestar-wasm/Cargo.lock
6 changes: 3 additions & 3 deletions .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"ipvm": "0.1.0",
"ipvm-guest-wasm": "0.1.0",
"ipvm-wasm": "0.1.0"
"homestar": "0.1.0",
"homestar-guest-wasm": "0.1.0",
"homestar-wasm": "0.1.0"
}
4 changes: 2 additions & 2 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Contributing to ipvm
# Contributing to homestar

We welcome everyone to contribute what and where they can. Whether you are brand
new, just want to contribute a little bit, or want to contribute a lot there is
Expand Down Expand Up @@ -84,7 +84,7 @@ need to be the best programmer to contribute. Our discord is open for questions
- You can learn more about cloning repositories [here][git-clone].

6. **Build** the project
- For a detailed look on how to build ipvm look at our
- For a detailed look on how to build homestar look at our
[README file](./README.md).

7. **Start writing** your code
Expand Down
Loading

0 comments on commit 7d7ca76

Please sign in to comment.