I have installed the program. How should I proceed now to install the new versions step by step? Please … thanks
What do you mean by new versions? If you have installed oTTodev following the instructions in the video or on the github page you already have the latest version of the app.
- When you want to use other llm;s you can configure your API keys in .env.local.
- When you want to start a new chat from the editorscreen, there is a menu at the lefthandside of the screen.
Probably he you mean to do git pull to update
Try running “git pull” and then npm run dev or npm run built && npm run start in terminal
Based on the documentation provided, while there isn’t an explicit upgrade procedure mentioned, I can help you with the standard process for upgrading a Git-based project that uses pnpm:
- First, navigate to your bolt.new-any-llm directory:
cd bolt.new-any-llm
- Fetch the latest changes from the repository:
git pull
- Install any new dependencies and update existing ones:
pnpm install
- Clear any cached data (if you encounter issues):
rm -rf node_modules
rm -rf .vite
pnpm install
- Restart the development server:
pnpm run dev
Note that you should keep your .env.local
file as it contains your API keys. The update should not affect your environment configuration.
If you encounter any issues after upgrading, you can check the Maintenance section’s recommendation to update dependencies:
pnpm update
You can also check the official repository at GitHub - coleam00/bolt.new-any-llm: Prompt, run, edit, and deploy full-stack web applications using any LLM you want! for any specific upgrade instructions or breaking changes in the latest release.
thanks.
when there are new features, how can I import them into the version installed on my PC?
Usually you need to run in temrinal
- git pull
- npm install
- npm run dev
combo
These are for the docker install??
No, I don’t use docker so can’t comment on that.
i use docker too … how can we do?