# Packplan **Repository Path**: qi1125feng/packplan ## Basic Information - **Project Name**: Packplan - **Description**: CPS packplan system provide project, milestone, container , customer management - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2025-08-06 - **Last Updated**: 2025-08-06 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README ### postgresql ``` shell # download docker docker pull postgres # start postgresql docker run --name packplan -e POSTGRES_PASSWORD=mysecret -d postgres docker run --name packplan -e POSTGRES_PASSWORD=mysecret -d postgres:12.19-alpine3.20 ``` ### frontend ``` shell npm install npm run dev ``` ### backend #### setup Prisma in .env DATABASE_URL="postgresql://postgres:mysecret@localhost:5432/packplan?schema=public" More information in our documentation: https://pris.ly/d/getting-started netsh interface portproxy add v4tov4 listenport=5432 listenaddress=0.0.0.0 connectport=4000 connectaddress=172.23.1.80 #### generate prisma models and client ``` 1. you have db change firstly prisma db pull npm run prisma:generate 2. you have schema change firstly npm run migrate:dev npm run prisma:generate ``` ### GIT ``` git config --global credential.helper store ```