Fork of github.com/did-method-plc/did-method-plc
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

tidy

dholms b13305e7 88a1416a

+7 -7
+1 -1
packages/lib/build.js
··· 2 2 const { nodeExternalsPlugin } = require('esbuild-node-externals') 3 3 4 4 const buildShallow = 5 - process.argv.includes('--shallow') || process.env.ATP_BUILD_SHALLOW === 'true' 5 + process.argv.includes('--shallow') || process.env.PLC_BUILD_SHALLOW === 'true' 6 6 7 7 if (process.argv.includes('--update-main-to-dist')) { 8 8 return pkgJson
+1 -1
packages/server/Dockerfile
··· 5 5 COPY ./*.* ./ 6 6 # NOTE plc's transitive dependencies go here: if that changes, this needs to be updated. 7 7 COPY ./packages/lib ./packages/lib 8 - RUN ATP_BUILD_SHALLOW=true yarn install --frozen-lockfile > /dev/null 8 + RUN PLC_BUILD_SHALLOW=true yarn install --frozen-lockfile > /dev/null 9 9 RUN yarn workspaces run build --update-main-to-dist > /dev/null 10 10 # Remove non-prod deps 11 11 RUN yarn install --production --ignore-scripts --prefer-offline > /dev/null
+1 -1
packages/server/build.js
··· 2 2 const { nodeExternalsPlugin } = require('esbuild-node-externals') 3 3 4 4 const buildShallow = 5 - process.argv.includes('--shallow') || process.env.ATP_BUILD_SHALLOW === 'true' 5 + process.argv.includes('--shallow') || process.env.PLC_BUILD_SHALLOW === 'true' 6 6 7 7 if (process.argv.includes('--update-main-to-dist')) { 8 8 return pkgJson
+2 -2
pg/README.md
··· 53 53 54 54 #### `db` service for persistent use 55 55 56 - The `db` service has persistent storage on the host machine managed by Docker under a volume named `pg_atp_db`. When the container is removed, data in the database will remain on the host machine. In order to start fresh, you would need to remove the volume. 56 + The `db` service has persistent storage on the host machine managed by Docker under a volume named `pg_plc_db`. When the container is removed, data in the database will remain on the host machine. In order to start fresh, you would need to remove the volume. 57 57 58 58 This service runs on port `5432`. 59 59 ··· 61 61 $ docker compose up db -d # start container 62 62 $ docker compose stop db # stop container 63 63 $ docker compose rm db # remove container 64 - $ docker volume rm pg_atp_db # remove volume 64 + $ docker volume rm pg_plc_db # remove volume 65 65 ```
+2 -2
pg/docker-compose.yaml
··· 22 22 healthcheck: 23 23 disable: true 24 24 volumes: 25 - - atp_db:/var/lib/postgresql/data 25 + - plc_db:/var/lib/postgresql/data 26 26 volumes: 27 - atp_db: 27 + plc_db: