You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
-[Python](https://www.python.org/downloads/) (version 3.8 or above)
16
15
17
16
## Quickstart
18
17
19
-
Download the latest release from LLMStack's [releases page](https://github.com/trypromptly/LLMStack/releases) and extract it. Navigate to the extracted directory and create your `.env` file and update `SECRET_KEY`, `CIPHER_SALT` and `DATABASE_PASSWORD`:
18
+
You can install LLMStack locally using the following command:
19
+
20
+
```
21
+
pip install llmstack
22
+
```
23
+
24
+
:::info
25
+
LLMStack comes with a default admin account whose credentials are `admin` and `promptly`. _Be sure to change the password from admin panel after logging in_.
26
+
:::
27
+
28
+
Once installed, you can start LLMStack using the following command:
29
+
30
+
```
31
+
llmstack
32
+
```
33
+
34
+
LLMStack should automatically open your browser and point it to login page on [http://localhost:3000](http://localhost:3000). You can also alternatively open [http://localhost:3000](http://localhost:3000) to login into the platform.
35
+
36
+
LLMStack creates a config file in your home directory at `~/.llmstack/config` to store the configuration. You can change the port and other settings from this file. Refer to the [configuration](config.md) section for more information.
37
+
38
+
### Docker
39
+
40
+
You can also run LLMStack in docker. Download the latest release from LLMStack's [releases page](https://github.com/trypromptly/LLMStack/releases) and extract it. Navigate to the extracted directory and create your `.env` file and update `SECRET_KEY`, `CIPHER_SALT` and `DATABASE_PASSWORD`:
20
41
21
42
```
22
43
cp .env.prod .env
@@ -32,10 +53,6 @@ Run LLMStack using the following command:
32
53
33
54
Once LLMStack is up and ready, it should automatically open your browser and point it to login page on [http://localhost:3000](http://localhost:3000). You can also alternatively use `docker compose up --pull always` to manually start the containers and open [http://localhost:3000](http://localhost:3000) to login into the platform. Make sure to wait for the API server to be ready before trying to load LLMStack.
34
55
35
-
:::info
36
-
LLMStack comes with a default admin account whose credentials are `admin` and `promptly`. _Be sure to change the password from admin panel after logging in_.
0 commit comments