Thank you for the suggestion about checking previous commits. However, I should clarify that this has been happening since my very first launch of the application. Some additional context:
First-time Setup Details:
This was my first installation of Bolt.new
I followed the README instructions step by step with assistance from Claude AI
We did not use the Docker installation method (went with direct installation)
The .env.local file was kept as is (didn’t rename to .env as mentioned in the file’s comment)
Installation Process:
Successfully set up all prerequisites
Installed and configured Ollama
Set up models (Qwen 2.5 Coder 32B and Mistral with extended contexts)
Added all API keys to .env.local
Current Status:
Ollama models are running correctly (verified through API)
All API keys are properly set in .env.local
Issue has been consistent since first launch
I’m new to development and followed every command precisely. Not sure if using Docker would make a difference, or if keeping the file as .env.local instead of renaming it to .env could be related to the issue.
Renaming the file to .env does not work because the bindings.sh file sets the environment variables by redirecting the file .env.local. I’ve tried copying this file to ./app however this does not work either.
I’ve recloned the repo several times and have cleaned out my docker containers and images and still does not work for both production and development.
I’m kind of at the end of my rope on this, I’m not sure how this is working?
I opened a console window into the running container and it looks like the docker build will not include .env.local file into the build image, however will include it if its in the ./app folder. I had to then odify bindings.sh to instead take the file from ./app/.env.local instead of ./.env.local.
Either .env.local is excluded somehow in the build does not include it.
I’m on windows. When I was using docker I could see that the image was updated if I renamed the .env file or edited the file. In windows, that file needs to be within the bolt.new-any-llm folder. For what’s its worth, with .env.local I could not get model to work. Renaming to .env made everything work.
Thanks, should we run the following for a clean install to try it?:
⦁ pnpm store prune
⦁ pnpm install
Since I think a git pull would only update the new modified code file?
Or how would you suggest to remove everything and then reinstall everything according to the oTToDev readme GIT from the beginning?