This is a Next.js project bootstrapped with create-next-app.
proj-pantry-track.vercel.app
First, run the development server:
npm run dev
# or
yarn dev
# or
pnpm dev
# or
bun devOpen http://localhost:3000 with your browser to see the result.
You can start editing the page by modifying app/page.js. The page auto-updates as you edit the file.
This project uses next/font to automatically optimize and load Inter, a custom Google Font.
npm install @mui/material @emotion/react @emotion/styled
https://mui.com/material-ui/getting-started/installation/
npm install @fontsource/roboto
import '@fontsource/roboto/300.css'; import '@fontsource/roboto/400.css'; import '@fontsource/roboto/500.css'; import '@fontsource/roboto/700.css';
npm install firebasenpm install firebase
import { initializeApp } from 'firebase/app'; import { getAnalytics } from "firebase/analytics";
// TODO: Replace the following with your app's Firebase project configuration const firebaseConfig = { //... };
const app = initializeApp(firebaseConfig);
- Box, Typography, Modal
https://www.youtube.com/watch?v=17UVejOw3zA
On the terminal, Install vercel CLI
npm i -g vercel
vercel build
vercel deploy --prebuilt
#Deploy the build outputs in .vercel/output produced by vercel build.Add, commit, and push to your github repo
Go to vercel website and add your project
Source: Vercel from the creators of Next.js.
python -m venv openai-envThen activate using this cmd:
source openai-env/bin/activatepip install --upgrade openai