diff --git a/app.dockerfile b/app.dockerfile index 3433288..11503fe 100644 --- a/app.dockerfile +++ b/app.dockerfile @@ -1,5 +1,8 @@ FROM node:20.18.0-slim AS builder +ENV NEXT_PUBLIC_AWS_DB_API_URL=https://lyxeetk4w1.execute-api.us-east-1.amazonaws.com/default/getFromStockalyzerDB +ENV NEXT_PUBLIC_AWS_DB_API_KEY=0KcuAyP5zT8kk2vW4MXAU9lMi52Yorti4vRwLwia + WORKDIR /home/perplexica COPY package.json yarn.lock ./ diff --git a/src/components/Sidebar.tsx b/src/components/Sidebar.tsx index 5829c60..76b9e52 100644 --- a/src/components/Sidebar.tsx +++ b/src/components/Sidebar.tsx @@ -1,7 +1,7 @@ 'use client'; import { cn } from '@/lib/utils'; -import { BookOpenText, Home, Search, SquarePen, Settings } from 'lucide-react'; +import { BookOpenText, Home, Search, SquarePen, Settings, VideoIcon } from 'lucide-react'; import Link from 'next/link'; import { useSelectedLayoutSegments } from 'next/navigation'; import React, { useState, type ReactNode } from 'react'; @@ -35,6 +35,12 @@ const Sidebar = ({ children }: { children: React.ReactNode }) => { active: segments.includes('library'), label: 'Library', }, + { + icon: VideoIcon, + href: '/news', + active: segments.includes('news'), + label: 'News', + }, ]; return (