Skip to content

sundi133/salepilot

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
Feb 4, 2024
Feb 4, 2024
Feb 4, 2024
Feb 4, 2024
Feb 4, 2024
Feb 4, 2024
Feb 4, 2024
Feb 4, 2024
Feb 4, 2024
Feb 4, 2024
Feb 4, 2024
Feb 4, 2024
Feb 4, 2024
Feb 4, 2024
Feb 4, 2024
Feb 4, 2024
Feb 4, 2024
Feb 4, 2024
Feb 4, 2024
Feb 4, 2024
Feb 4, 2024

Repository files navigation

HireCoPilot UI

·

Overview

This is a starter template using the following stack:

This template uses the new Next.js App Router. This includes support for enhanced layouts, colocation of components, tests, and styles, component-level data fetching, and more.

Getting Started

During the deployment, Vercel will prompt you to create a new Postgres database. This will add the necessary environment variables to your project.

Inside the Vercel Postgres dashboard, create a table based on the schema defined in this repository.

CREATE TABLE users (
  id SERIAL PRIMARY KEY,
  email VARCHAR(255) NOT NULL,
  name VARCHAR(255),
  username VARCHAR(255)
);

Insert a row for testing:

INSERT INTO users (id, email, name, username) VALUES (1, '[email protected]', 'Me', 'username');

Finally, run the following commands to start the development server:

pnpm install
pnpm dev

Linting

npx prettier . --write

You should now be able to access the application at http://localhost:3000.

About

salepilot

Resources

License

Apache-2.0, MIT licenses found

Licenses found

Apache-2.0
LICENSE
MIT
LICENSE.md

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published