Skip to content

Releases: Codr-CLI/codrup

Release v1.1.0

18 Oct 20:52

Choose a tag to compare

Bug Fix Release

What's Fixed

Configuration Command Now Works Properly

Fixed a critical bug in the --config command that prevented environment variables from being set up correctly.

The Issue:
The config command was attempting to create the .env file at an invalid path (~/.codr/config.json/.env instead of ~/.codr/.env), causing the configuration process to fail.

The Fix:

  • Corrected the target path in src/index.ts to point to the directory rather than a file
  • Environment variables are now properly saved to ~/.codr/.env

Changes

  • Fixed: --config command now correctly creates .env file at ~/.codr/.env
  • Improved: Path consistency across setup and config commands

Usage

After updating, you can now successfully reconfigure your environment:

codrup --config

This will prompt you to:

  • Select your LLM provider (Gemini, Claude, DeepSeek, OpenAI)
  • Choose a model
  • Enter your API key

The configuration will be saved to ~/.codr/.env and ready for use with codr.


Full Changelog: Compare changes since last release

Installation

npm install -g codrup@latest

Or if already installed:

npm update -g codrup