Skip to content

Commit ae0fde9

Browse files
committed
Update setup guide and configuration for OpenInstaDM
1 parent 09a26b5 commit ae0fde9

2 files changed

Lines changed: 11 additions & 11 deletions

File tree

SETUP.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
# 🚀 OpenReply Setup Guide
1+
# 🚀 OpenInstaDM Setup Guide
22

3-
Welcome to OpenReply! This guide is designed for absolute beginners to help you set up and run OpenReply locally and in production.
3+
Welcome to OpenInstaDM! This guide is designed for absolute beginners to help you set up and run OpenInstaDM locally and in production.
44

5-
OpenReply consists of **two parts** that must run at the same time:
5+
OpenInstaDM consists of **two parts** that must run at the same time:
66

77
1. **The Web App** (Next.js): Renders the dashboard, takes care of logins, and receives webhooks from Instagram.
88
2. **The Worker** (BullMQ): A background process that listens to incoming comments/DMs, checks rate limits, and sends the replies.
@@ -46,8 +46,8 @@ openssl rand -hex 16
4646
1. **Clone the repository and install dependencies**:
4747

4848
```bash
49-
git clone https://github.com/diwenne/openreply.git
50-
cd openreply
49+
git clone https://github.com/xeven777/openinstadm.git
50+
cd openinstadm
5151
npm install
5252
```
5353

@@ -135,21 +135,21 @@ Requires a free Cloudflare account. Gives you a **stable, named domain** (`*.try
135135
2. **Create the tunnel** (only once):
136136
137137
```bash
138-
cloudflared tunnel create openreply-dev
138+
cloudflared tunnel create opendm-dev
139139
```
140140
141141
Note the **Tunnel ID** printed in the output.
142142
143143
3. **Create a DNS record** (only once):
144144
145145
```bash
146-
cloudflared tunnel route dns openreply-dev dev.yourdomain.com
146+
cloudflared tunnel route dns opendm-dev dev.yourdomain.com
147147
```
148148
149149
4. **Create a config file** at `~/.cloudflared/config.yml`:
150150
151151
```yaml
152-
tunnel: openreply-dev
152+
tunnel: opendm-dev
153153
credentials-file: /home/<your-user>/.cloudflared/<tunnel-id>.json
154154
155155
ingress:
@@ -161,7 +161,7 @@ Requires a free Cloudflare account. Gives you a **stable, named domain** (`*.try
161161
5. **Start the tunnel**:
162162
163163
```bash
164-
cloudflared tunnel run openreply-dev
164+
cloudflared tunnel run opendm-dev
165165
```
166166
167167
6. **Update `.env`**:
@@ -304,7 +304,7 @@ Meta apps in Development mode only allow authorized test accounts to connect.
304304
305305
---
306306
307-
## 🏃‍♂️ Step 5: Start OpenReply
307+
## 🏃‍♂️ Step 5: Start OpenInstaDM
308308
309309
You must start two processes in separate terminal windows:
310310

next.config.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import type { NextConfig } from "next";
22

33
const nextConfig: NextConfig = {
4-
/* config options here */
4+
allowedDevOrigins: ["tunnel.auradevs.co"],
55
reactCompiler: true,
66
turbopack: {
77
root: process.cwd(),

0 commit comments

Comments
 (0)