Self Hosting (Local)
Here are the steps to get a local instance of the dialoqbase server up and running.
Are you looking for a Railway deployment guide? Click here.
Prerequisites
Steps
Follow the steps below to get a local instance of the dialoqbase server up and running.
Clone the repository
git clone https://github.com/n4ze3m/dialoqbase && cd dialoqbase
Edit the .env
file
Copy paste your OPENAI_API_KEY
and other API keys in the .env
file.
nano .env
vim .env
notepad .env
Launch the server
Run the following command to start the server.
docker-compose up -d
docker compose up -d
Wait for the server to start
For the first time, it may take a few minutes to start the server. You can check the logs to see if the server has started.
After the server has started, you can visit the following URL to see the dashboard.
http://localhost:3000
Use the following credentials to login to the dashboard.
username: admin
password: admin
TIP
Make sure to change the password after logging in. You can change the password from the settings page.
Stop the server (optional)
If you want to stop the server, run the following command.
docker-compose down
docker compose down