Getting Started
Getting Started
To get started with LLMStack, you can either use the prebuilt release archive or build from source.
Use Prebuilt Release
Download the latest release from here. Extract the archive and run the following command from the extracted directory.
cp .env.prod .env
info
If you would like to add any default keys to your LLMStack installation you can add by modifying the .env
file.
Start the docker containers:
docker compose up
Build from Source
- Clone the repository
git clone https://github.com/trypromptly/LLMStack.git
- Compile the frontend code
cd LLMStack/client
npm run buildinfoIf running this command for the first make sure to install the dependencies by running
npm install
first. - Build and start the docker image
docker-compose -f docker-compose.dev.yml -d --build --env-file .env.dev up
- Point your browser to
localhost:9000
to login into the platform. LLMStack deployment comes with a default admin account whose credentials areadmin
andpromptly
. Be sure to change the password from admin panel after logging in.