Skip to content
9 changes: 4 additions & 5 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,21 +2,20 @@ version: 2.1

defaults: &defaults
docker:
- image: node:16.14
- image: node:18.20.8

# DEFINE INDIVIDUAL STEPS

deploy_defaults: &deploy_defaults
docker:
- image: cimg/python:3.10.2
- image: cimg/python:3.12.1-browsers

install_build_dependency: &install_build_dependency
name: Installation of build and deployment dependencies.
command: |
apt-get update -y && apt-get install -qq -y python-pip libpython-dev
curl -O https://bootstrap.pypa.io/pip/2.7/get-pip.py && python get-pip.py
apt-get update -y
#installing awscli
pip install awscli --upgrade
apt install awscli -y
apt install jq -y

install_dependency: &install_dependency
Expand Down
18 changes: 18 additions & 0 deletions public/assets/tools/copilot-portal.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
19 changes: 19 additions & 0 deletions public/assets/tools/sprite.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions src/lib/config/hosts.ts
Original file line number Diff line number Diff line change
Expand Up @@ -34,3 +34,4 @@ export const ONBOARDING_HOST: string = `https://onboarding.${TC_DOMAIN}`;
export const TALENT_SEARCH_HOST: string = `https://talent-search.${TC_DOMAIN}`;
export const ACCOUNT_SETTINGS_HOST: string = `https://account-settings.${TC_DOMAIN}`;
export const WALLETAPP_HOST: string = `https://wallet.${TC_DOMAIN}`;
export const COPILOT_PORTAL_HOST: string = `https://copilots.${TC_DOMAIN}`;
7 changes: 7 additions & 0 deletions src/lib/config/nav-menu/all-nav-items.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ import {
CHALLENGE_HOST,
COMMUNITY_HOST,
CONNECT_HOST,
COPILOT_PORTAL_HOST,
ONLINE_REVIEW_HOST,
TALENT_SEARCH_HOST,
TCACADEMY_HOST,
Expand Down Expand Up @@ -51,6 +52,12 @@ export const allNavItems: {[key: string]: NavMenuItem} = {
marketingPathname: '/ai-hub',
url: getMarketingUrl('/ai-hub'),
},
copilotPortal: {
label: 'Copilot Portal',
icon: 'copilot-portal',
description: 'Copilot Opportunities',
url: COPILOT_PORTAL_HOST,
},
howItWorks: {
label: 'How it works',
marketingPathname: '/how-it-works',
Expand Down
3 changes: 2 additions & 1 deletion src/lib/config/nav-menu/tool-selector-nav-items.ts
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,8 @@ export const toolSelectorNavItems: NavMenuItem = {
children: [
allNavItems.challengesApp,
allNavItems.review,
allNavItems.payments
allNavItems.payments,
allNavItems.copilotPortal,
]
},
{
Expand Down
1 change: 1 addition & 0 deletions types/src/lib/config/hosts.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,3 +17,4 @@ export declare const ONBOARDING_HOST: string;
export declare const TALENT_SEARCH_HOST: string;
export declare const ACCOUNT_SETTINGS_HOST: string;
export declare const WALLETAPP_HOST: string;
export declare const COPILOT_PORTAL_HOST: string;