Skip to content

Commit 4db3265

Browse files
authored
Merge pull request #19 from import-ai/chore/rename_project
Rename to omnibox in README.md
2 parents c144c92 + de11129 commit 4db3265

File tree

3 files changed

+12
-10
lines changed

3 files changed

+12
-10
lines changed

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,3 +2,5 @@
22
.vscode
33
.idea
44
.DS_Store
5+
compose.override.yaml
6+
data

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
# Magic Box
1+
# OmniBox
22

33
**This project is in a very early stages of development. Many features and documentation are missing, and it is not ready for production use.**
44

55
## Overview
66

7-
Magic Box is designed as a second brain that you can put everything in, and get everything out. It aims to be a comprehensive tool for managing and retrieving information efficiently. Whether it's notes, documents, or any other type of data, Magic Box helps you organize and access it with ease.
7+
OmniBox is designed as a second brain that you can put everything in, and get everything out. It aims to be a comprehensive tool for managing and retrieving information efficiently. Whether it's notes, documents, or any other type of data, OmniBox helps you organize and access it with ease.
88

99
## Features
1010

@@ -16,7 +16,7 @@ Magic Box is designed as a second brain that you can put everything in, and get
1616

1717
## Getting Started
1818

19-
To get started with Magic Box, follow the deployment instructions below and set up the browser plugin for an enhanced experience.
19+
To get started with OmniBox, follow the deployment instructions below and set up the browser plugin for an enhanced experience.
2020

2121
## Deployment
2222

compose.yaml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ services:
1919
- "/etc/localtime:/etc/localtime:ro"
2020
environment:
2121
ENV: "prod"
22-
OBB_DB_URL: "postgresql+asyncpg://magic_box:magic_box@postgres:5432/magic_box"
22+
OBB_DB_URL: "postgresql+asyncpg://omnibox:omnibox@postgres:5432/omnibox"
2323
OBB_WIZARD_BASE_URL: "http://wizard:8000"
2424
healthcheck:
2525
test: ["CMD", "wget", "-q", "-O-", "http://127.0.0.1:8000/api/v1/health"]
@@ -39,7 +39,7 @@ services:
3939
- "/etc/localtime:/etc/localtime:ro"
4040
environment:
4141
ENV: "prod"
42-
OBW_DB_URL: "postgresql+asyncpg://magic_box:magic_box@postgres:5432/magic_box"
42+
OBW_DB_URL: "postgresql+asyncpg://omnibox:omnibox@postgres:5432/omnibox"
4343
OBW_VECTOR_HOST: chromadb
4444
OBW_VECTOR_PORT: 8000
4545
OBW_BACKEND_BASE_URL: "http://backend:8000"
@@ -59,7 +59,7 @@ services:
5959
restart: always
6060
environment:
6161
ENV: "prod"
62-
OBW_DB_URL: "postgresql+asyncpg://magic_box:magic_box@postgres:5432/magic_box"
62+
OBW_DB_URL: "postgresql+asyncpg://omnibox:omnibox@postgres:5432/omnibox"
6363
OBW_VECTOR_HOST: chromadb
6464
OBW_VECTOR_PORT: 8000
6565
OBW_BACKEND_BASE_URL: "http://backend:8000"
@@ -87,11 +87,11 @@ services:
8787
- postgres:/var/lib/postgresql/data
8888
- "/etc/localtime:/etc/localtime:ro"
8989
environment:
90-
POSTGRES_DB: magic_box
91-
POSTGRES_USER: magic_box
92-
POSTGRES_PASSWORD: magic_box
90+
POSTGRES_DB: omnibox
91+
POSTGRES_USER: omnibox
92+
POSTGRES_PASSWORD: omnibox
9393
healthcheck:
94-
test: ["CMD", "pg_isready", "-q", "-d", "magic_box", "-U", "magic_box"]
94+
test: ["CMD", "pg_isready", "-q", "-d", "omnibox", "-U", "omnibox"]
9595
interval: 30s
9696
timeout: 10s
9797
retries: 5

0 commit comments

Comments
 (0)