hardyscc / messenger-clone

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

This is a Next.js project bootstrapped with create-next-app.

Getting Started

First, run the development server:

npm run dev
# or
yarn dev
# or
pnpm dev

Open http://localhost:3000 with your browser to see the result.

You can start editing the page by modifying app/page.tsx. The page auto-updates as you edit the file.

This project uses next/font to automatically optimize and load Inter, a custom Google Font.

Learn More

To learn more about Next.js, take a look at the following resources:

You can check out the Next.js GitHub repository - your feedback and contributions are welcome!

Deploy on Vercel

The easiest way to deploy your Next.js app is to use the Vercel Platform from the creators of Next.js.

Check out our Next.js deployment documentation for more details.

Deploy on Microk8s

docker build --build-arg http_proxy --build-arg https_proxy --push -t hacdescm/messenger-clone  .

helmfile apply

Generate shadow database and migration script

brew install postgresql@15
brew service start postgresql@15
export DATABASE_URL="postgresql://$USER@localhost:5432/messenger"
npx prisma migrate dev --name init

Reset shadow database from migration script

export DATABASE_URL="postgresql://$USER@localhost:5432/messenger"
npx prisma migrate reset

Create production database

create user "messenger-user" with encrypted password 'User12345';
create database "messenger" with owner "messenger-user";

Initialize production database

# port forward production database to localhost
export DATABASE_URL="postgresql://messenger-user:User12345@localhost:5432/messenger"
npx prisma migrate deploy

About


Languages

Language:TypeScript 96.3%Language:Smarty 2.1%Language:JavaScript 0.8%Language:Dockerfile 0.8%Language:CSS 0.1%