Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

minor: changed 'Alokit-Innovations' to 'vibinex' everywhere #185

Merged
merged 1 commit into from
Oct 4, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@

Vibi-DPU is an application written in Rust and packaged as a Docker image. It runs on the users' infrastructure to analyze private Intellectual Property data, empowering users through analysis without sacrificing privacy.

The application communicates with our Next.js server, hosted on our infrastructure, which is also open source. You can find it [here](https://github.com/Alokit-Innovations/team-monitor-website/).
The application communicates with our Next.js server, hosted on our infrastructure, which is also open source. You can find it [here](https://github.com/vibinex/vibinex-server).

Currently, we analyze code in Git repositories, and are soon planning to add APM data and business events. The insights we get from these analyses are communicated through comments/actions on pull requests and through our [open-source Chrome Extension](https://chrome.google.com/webstore/detail/vibinex-code-review/jafgelpkkkopeaefadkdjcmnicgpcncc).
Currently, we analyze code in Git repositories, and are soon planning to add APM data and business events. The insights we get from these analyses are communicated through comments/actions on pull requests and through our [open-source Chrome Extension](https://chrome.google.com/webstore/detail/vibinex-code-review/jafgelpkkkopeaefadkdjcmnicgpcncc).

For more information, visit our website at https://vibinex.com/.

Expand All @@ -14,7 +14,7 @@ To run Vibi-DPU locally:

1. Generate public url using ngrok - `ngrok http 3000`. We will run our next server locally on port 3000 in later steps.
2. Paste this in OAuth consumers in callback_url field.
3. Clone [vibinex-server](https://github.com/Alokit-Innovations/vibinex-server/) locally.
3. Clone [vibinex-server](https://github.com/vibinex/vibinex-server/) locally.
4. Paste the client id and secret in vibinex-server in .env.local in root directory. Also use them in the docker command below.
5. Fire up cloud sql proxy - `./cloud-sql-proxy --port 5432 vibi-test-394606:asia-south1:test-db`
6. Change url in vibinex-server in .env.local - `NEXTAUTH_URL=https://example.ngrok-free.app`
Expand Down
4 changes: 2 additions & 2 deletions bitbucket-test-trigger.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
steps:
# Clone the main repository
- name: 'gcr.io/cloud-builders/git'
args: ['clone', '--recursive', 'https://github.com/Alokit-Innovations/test-scripts.git']
args: ['clone', '--recursive', 'https://github.com/vibinex/test-scripts.git']

# Install Python dependencies
- name: 'gcr.io/cloud-builders/python'
Expand All @@ -12,7 +12,7 @@ steps:
- name: 'gcr.io/cloud-builders/python'
args: ['on-prem-bitbucket-tests.py']
dir: 'test-scripts'
env:
env:
- 'test_oauth_consumer_key=${_TEST_OAUTH_CONSUMER_KEY}'
- 'test_oauth_consumer_secret=${_TEST_OAUTH_CONSUMER_SECRET}'
- 'test_db_host=${_TEST_DB_HOST}'
Expand Down
4 changes: 2 additions & 2 deletions vibi-dpu/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,11 @@ license = "GPL-3.0-or-later"
description = "Vibinex Data Processing Unit for analysing praivate data"
readme = "README.md"
homepage = "https://vibinex.com"
repository = "https://github.com/Alokit-Innovations/vibi-dpu"
repository = "https://github.com/vibinex/vibi-dpu"
keywords = ["pullrequest", "privacy", "git"]
categories = ["development-tools", "profiling"]

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dev-dependencies]
dotenv = "0.15"

Expand Down
Loading