VSCode
1. Navigate to the Codeium Enterprise extension settings by pressing Ctrl+Shift+X. Then navigating to the purple Codeium Extension.
2. Click on the gear icon and select "Extension Settings"
3. In the extension settings, click the gear icon and select "Reset Setting" for each box populated with a URL.
4. Reload VSCode by going to View -> Command Palette. Once the command palette is open type 'Reload window' and press enter.
5. On reload you should be prompted to Set URL.
6. Insert the new URL
7. Close out of the Setting tab.
8. Reload VSCode by going to View -> Command Palette. Once the command palette is open type 'Reload window' and press enter.
9. On reload, you should see a pop-up in the bottom right prompting you to sign in to Codeium. If not, go to the bottom left Accounts tab and click Sign in with Auth to use Codeium. Either method will redirect you to your enterprise's Codeium portal.
Visual Studio
1. Open the settings/preferences dialog (Tools → Options).
2. Select Codeium.
3. Set the Portal URL to `<NEW_URL>` and set the API URL to `<NEW_URL>/_route/api_server`.
4. Click OK and restart Visual Studio.
5. Upon restart, you will be prompted to sign in to the enterprise portal.
JetBrains
1. Go to Tools → Codeium Enterprise → Reset Codeium Enterprise Updater.
2. Enter the new URL ensuring no leading or trailing whitespace.
3. Restart your IDE.
4. After restarting, you will be prompted to log in.
Eclipse
1. Open the settings/preferences dialog.
2. Select Codeium.
3. Set the Portal URL to `<NEW_URL>`. Then click Apply and Close button.
4. Restart Eclipse.
5. Upon restart, you will be prompted to sign in to the enterprise portal.
Chrome
1. Click on the Codeium extension.
2. Select the Log out button.
3. Click the Open options setting button.
4. Under Extension settings, enter the new Portal URL.
5. Click the Enter Portal URL button.
NeoVim/Vim
1. Modify the following lines in your `.vimrc` or `init.vim` file:
let g:codeium_server_config = {
\ 'portal_url': '<NEW_URL>',
\ 'api_url': '<NEW_URL>/_route/api_server'
}
2. If using `init.lua`, modify the following:
vim.cmd[[let g:codeium_server_config = {
\ 'portal_url': '<NEW_URL>',
\ 'api_url': '<NEW_URL>/_route/api_server'
}]]
3. Launch a new editor and run `:Codeium Auth`.
4. Follow the instructions.
Emacs
1. Navigate to your `~/.emacs.d/init.el` file.
2. Modify the lines to:
(setq-default codeium-portal-url "<NEW_URL>")
(setq-default codeium-api-url "<NEW_URL>/_route/api_server")
3. Launch a new editor and run `M-x codeium-install` and follow the instructions in the terminal. Say yes to the first two prompts and then login either manual or auto.
Xcode
1. Switch to the 'Service' tab and click Codeium to access the account settings.
2. Click the Sign Out button.
3. Set the Portal URL to `<NEW_URL>` and set the API URL to `<NEW_URL>/_route/api_server`.
4. Click the Sign In button.
5. Paste in your new API Key, and click Sign in.