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 dialoqbaseEdit the .env file
Copy paste your OPENAI_API_KEY and other API keys in the .env file.
nano .envvim .envnotepad .envLaunch the server
Run the following command to start the server.
docker-compose up -ddocker compose up -dWait 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:3000Use the following credentials to login to the dashboard.
username: admin
password: adminTIP
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