Skip to content

Commit 4cab45f

Browse files
committed
removed redundant files and renamed the project
1 parent 141243f commit 4cab45f

File tree

9 files changed

+18
-156
lines changed

9 files changed

+18
-156
lines changed

Dockerfile

Lines changed: 1 addition & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,6 @@ FROM node:20.19.4 AS builder
22

33
WORKDIR /opt/torqbit
44

5-
# RUN apt-get update && apt-get install -y \
6-
# libcairo2-dev \
7-
# libpango1.0-dev \
8-
# libjpeg-dev \
9-
# libgif-dev \
10-
# build-essential \
11-
# pkg-config \
12-
# python3
135

146
# Install Yarn package manager
157
RUN npm install yarn
@@ -31,16 +23,13 @@ COPY docker.env /opt/torqbit/.env
3123
# Generate the schema & build the Next.js application
3224
RUN npx prisma generate && yarn build
3325

34-
# Step 2: Prepare Nginx to serve the built app
26+
# Prepare the image to serve the built app
3527
FROM node:20.19.4-slim
3628
RUN apt update && apt install -y curl openssl
37-
# Set working directory for Nginx
3829
WORKDIR /opt/torqbit
3930

40-
4131
# Copy .next/ folder (build artifacts)
4232
COPY --from=builder /opt/torqbit /opt/torqbit
4333

44-
4534
# Expose the port application will run on
4635
EXPOSE 8080

README.md

Lines changed: 11 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<p align="center">
2-
<a href="https://github.com/torqbit/torqbit" target="_blank" rel="noopener noreferrer">
3-
<img src="https://cdn.torqbit.com/static/brand/logo.png" alt="Torqbit Logo" width="250"/>
2+
<a href="https://github.com/torqbit/toq" target="_blank" rel="noopener noreferrer">
3+
<img src="https://cdn.torqbit.com/static/brand/toq/toq.png" alt="Torqbit Logo" width="250"/>
44
</a>
55
</p>
66

@@ -9,13 +9,13 @@
99
</p>
1010

1111
<p align="center">
12-
<a href="https://github.com/torqbit/torqbit/blob/main/LICENSE" target="_blank" rel="noopener noreferrer">
12+
<a href="https://github.com/torqbit/toq/blob/main/LICENSE" target="_blank" rel="noopener noreferrer">
1313
<img src="https://img.shields.io/github/license/torqbit/torqbit?style=flat" alt="License"/>
1414
</a>
15-
<a href="https://github.com/torqbit/torqbit/graphs/contributors" target="_blank" rel="noopener noreferrer">
15+
<a href="https://github.com/torqbit/toq/graphs/contributors" target="_blank" rel="noopener noreferrer">
1616
<img src="https://img.shields.io/github/contributors/torqbit/torqbit?style=flat" alt="Contributors"/>
1717
</a>
18-
<a href="https://github.com/torqbit/torqbit/issues" target="_blank" rel="noopener noreferrer">
18+
<a href="https://github.com/torqbit/toq/issues" target="_blank" rel="noopener noreferrer">
1919
<img src="https://img.shields.io/github/issues/torqbit/torqbit?style=flat" alt="Issues"/>
2020
</a>
2121
<a href="https://discord.gg/DHU38pGw7C" target="_blank" rel="noopener noreferrer">
@@ -24,7 +24,7 @@
2424
</p>
2525

2626
<p align="center">
27-
<img src="screenshots/ai-assistant.png" alt="Torqbit" width="800" style="border-radius: 4px;"/>
27+
<img src="screenshots/ai-assistant.png" alt="toq" width="800" style="border-radius: 4px;"/>
2828
</p>
2929

3030
---
@@ -46,7 +46,7 @@ Torqbit makes your **documentation AI-powered and conversational**. Developers c
4646
| 📚 **Multi-source Knowledge** | Integrate GitHub, GitBook, Notion, Google Drive, Markdown |
4747
| 🔗 **Universal Embedding** | Widget works seamlessly with any static or dynamic docs site |
4848
| 🌐 **Dedicated Query Endpoint** | Offer ask.yourdomain.com for direct Q&A access |
49-
| 🛠 **Open Source & Extensible** | Customize connectors and behaviors easily |
49+
| 🛠 **Open Source & Extensible** | Customize connectors and behaviors easily |
5050

5151
---
5252

@@ -61,10 +61,11 @@ _Chat directly inside your docs for real-time answers._
6161
## 🏁 Quick Start using Docker
6262

6363
```bash
64-
npx torqbit
64+
npx @torqbit/toq
6565
```
6666

6767
- What it does:
68+
6869
- Checks for Docker and Docker Compose.
6970
- Writes a `docker-compose.yml` to your current directory (asks before overwriting).
7071
- Starts the stack with `docker compose up -d --build`.
@@ -92,8 +93,8 @@ npx torqbit
9293
### Run Locally
9394

9495
```bash
95-
git clone https://github.com/torqbit/torqbit.git
96-
cd torqbit
96+
git clone https://github.com/torqbit/toq.git
97+
cd toq
9798
yarn install
9899
yarn dev
99100
```

academy.com

Lines changed: 0 additions & 30 deletions
This file was deleted.

ascii

Lines changed: 0 additions & 8 deletions
This file was deleted.

bash.exe.stackdump

Lines changed: 0 additions & 28 deletions
This file was deleted.

installer/README.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,17 @@
11
# Torqbit Docker Installer
22

3-
One-command installer to set up and run Torqbit via Docker Compose.
3+
One-command installer to set up and run Toq via Docker Compose.
44

55
## Usage
66

77
- Run via npx :
88

99
```bash
10-
npx torqbit
10+
npx @torqbit/toq
1111
```
1212

1313
- What it does:
14+
1415
- Checks for Docker and Docker Compose.
1516
- Writes a `docker-compose.yml` to your current directory (asks before overwriting).
1617
- Starts the stack with `docker compose up -d --build`.

installer/docker-compose.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
services:
22
web:
3-
image: torqbit/torqbit:v1.0.3
3+
image: torqbit/toq:v1.0.4
44
ports:
55
- "8080:8080"
66
command: ["sh", "-c", "npx prisma db push --accept-data-loss; PORT=8080 yarn start"]

installer/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
2-
"name": "torqbit",
2+
"name": "@torqbit/toq",
33
"version": "1.0.5",
4-
"description": "One-command installer to set up and run Torqbit via Docker Compose",
4+
"description": "One-command installer to set up and run Toq via Docker Compose",
55
"bin": {
66
"torqbit": "index.js"
77
},

nginx.conf

Lines changed: 0 additions & 63 deletions
This file was deleted.

0 commit comments

Comments
 (0)