21 Commits

Author SHA1 Message Date
73cd1d794a Finalized drone pipeline (mostly)
All checks were successful
continuous-integration/drone/push Build is passing
2023-05-09 18:52:31 -04:00
28ac23d8f2 Or one more...
All checks were successful
continuous-integration/drone/push Build is passing
2023-05-09 18:30:26 -04:00
71b7519a53 Last try then go with what works
All checks were successful
continuous-integration/drone/push Build is passing
2023-05-09 18:28:53 -04:00
28ee1a9d1e One works... but the other...
All checks were successful
continuous-integration/drone/push Build is passing
2023-05-09 18:27:49 -04:00
f327c6e06e revert
All checks were successful
continuous-integration/drone/push Build is passing
2023-05-09 18:18:14 -04:00
799ff00f9c Update pipeline. Again. Day 900 and something.
Some checks failed
continuous-integration/drone/push Build is failing
2023-05-09 09:17:36 -04:00
369e3f4b5c !! 2023-05-08 19:26:53 -04:00
3788de2609 ??
Some checks failed
continuous-integration/drone/push Build encountered an error
2023-05-08 19:24:42 -04:00
0f9aafe418 ........
Some checks failed
continuous-integration/drone/push Build encountered an error
2023-05-08 19:15:07 -04:00
13b90e9ee6 .....
Some checks failed
continuous-integration/drone/push Build is failing
2023-05-08 19:13:44 -04:00
6e19a6217d Go!
All checks were successful
continuous-integration/drone/push Build is passing
2023-05-08 19:08:55 -04:00
34fd4e7304 ...
Some checks failed
continuous-integration/drone/push Build is failing
2023-05-08 19:05:41 -04:00
5e04012aa4 Zoom!
Some checks failed
continuous-integration/drone/push Build is failing
2023-05-08 18:59:13 -04:00
e8f2928543 Go!
Some checks failed
continuous-integration/drone/push Build is failing
2023-05-08 18:53:26 -04:00
91a3b2fabf Do just one thing...
Some checks failed
continuous-integration/drone/push Build is failing
2023-05-08 18:40:38 -04:00
964b9a03ef New pipeline...
Some checks failed
continuous-integration/drone/push Build is failing
2023-05-08 18:31:24 -04:00
bf693645d4 Lordy...
Some checks failed
continuous-integration/drone/push Build is failing
2023-05-08 18:22:37 -04:00
082b4826c2 image_pull_secrets
Some checks failed
continuous-integration/drone/push Build is failing
2023-05-08 16:59:12 -04:00
e68c3002d8 And again...
Some checks failed
continuous-integration/drone/push Build is failing
2023-05-08 16:37:43 -04:00
30d2f4a644 Go!
Some checks failed
continuous-integration/drone/push Build is failing
2023-05-08 16:32:52 -04:00
875a45f2b8 Perchance to dream...
Some checks failed
continuous-integration/drone/push Build is failing
2023-05-08 16:18:00 -04:00
4 changed files with 95 additions and 106 deletions

View File

@@ -1,70 +1,70 @@
# kind: pipeline kind: pipeline
# type: docker type: docker
# name: Test Pipeline name: Test Pipeline
# workspace: workspace:
# path: /drone/grow path: /drone/grow
# steps: steps:
# - name: yarn install - name: yarn install
# image: node:latest image: node:latest
# commands: commands:
# - yarn install - yarn install
# - name: Code Style Checks - name: Code Style Checks
# image: node:latest image: node:latest
# commands: commands:
# - yarn prettier - yarn prettier
# - name: Lint - name: Lint
# image: node:latest image: node:latest
# commands: commands:
# - yarn lint - yarn lint
# - name: Unit Tests - name: Unit Tests
# image: node:latest image: node:latest
# commands: commands:
# - yarn test - yarn test
# - name: Send Test Status Notification - name: Send Test Status Notification
# image: plugins/webhook image: plugins/webhook
# settings: settings:
# urls: https://lab.mifi.dev/hooks/9p65zpagctgkmndo8nwwm4199r urls: https://lab.mifi.dev/hooks/9p65zpagctgkmndo8nwwm4199r
# content_type: application/json content_type: application/json
# template: | template: |
# { {
# "icon_url":"https://emojipedia-us.s3.dualstack.us-west-1.amazonaws.com/thumbs/120/apple/198/freezing-face_1f976.png", "icon_url":"https://emojipedia-us.s3.dualstack.us-west-1.amazonaws.com/thumbs/120/apple/198/freezing-face_1f976.png",
# "text": "[{{ repo.name }} - Build # {{ build.number }}] Code Quality Checks {{ build.status }} {{#success build.status}}:tada:{{else}}:poop:{{/success}}", "text": "[{{ repo.name }} - Build # {{ build.number }}] Code Quality Checks {{ build.status }} {{#success build.status}}:tada:{{else}}:poop:{{/success}}",
# "username":"DroneBot" "username":"DroneBot"
# } }
# when: when:
# status: status:
# - success - success
# - failure - failure
# - name: Build - name: Build
# image: node:latest image: node:latest
# commands: commands:
# - yarn build - yarn build
# - name: Send Build Status Notifications - name: Send Build Status Notifications
# image: plugins/webhook image: plugins/webhook
# settings: settings:
# urls: https://lab.mifi.dev/hooks/9p65zpagctgkmndo8nwwm4199r urls: https://lab.mifi.dev/hooks/9p65zpagctgkmndo8nwwm4199r
# content_type: application/json content_type: application/json
# template: | template: |
# { {
# "icon_url":"https://emojipedia-us.s3.dualstack.us-west-1.amazonaws.com/thumbs/120/apple/198/freezing-face_1f976.png", "icon_url":"https://emojipedia-us.s3.dualstack.us-west-1.amazonaws.com/thumbs/120/apple/198/freezing-face_1f976.png",
# "text": "[{{ repo.name }} - Build # {{ build.number }}] Build package {{ build.status }} {{#success build.status}}:tada:{{else}}:poop:{{/success}}", "text": "[{{ repo.name }} - Build # {{ build.number }}] Build package {{ build.status }} {{#success build.status}}:tada:{{else}}:poop:{{/success}}",
# "username":"DroneBot" "username":"DroneBot"
# } }
# when: when:
# status: status:
# - success - success
# - failure - failure
# trigger: trigger:
# branch: branch:
# - main - main
# event: event:
# # - pull_request # - pull_request
# - push - push
# --- ---
kind: pipeline kind: pipeline
type: docker type: docker
name: Publish Pipeline name: Publish Pipeline
@@ -79,27 +79,13 @@ steps:
- yarn install - yarn install
- yarn build - yarn build
- name: Publish NPM - name: Publish NPM
image: node:latest image: node:20-alpine
failure: ignore failure: ignore
commands: commands:
- yarn npm publish - yarn publish -t ${DRONE_TAG}
volumes: volumes:
- name: npmrc - name: npmrc
path: /drone/grow/.npmrc path: /drone/grow/.npmrc
# - name: Publish NPM
# image: plugins/npm
# failure: ignore
# settings:
# username:
# from_secret: registry_username
# password:
# from_secret: registry_password
# registry: https://git.mifi.dev/api/packages/mifi/npm
# token:
# - from_secret: gitea_token
# volumes:
# - name: npmrc
# path: /drone/grow/.npmrc
- name: Report NPM Publish Status - name: Report NPM Publish Status
image: plugins/webhook image: plugins/webhook
settings: settings:
@@ -116,16 +102,18 @@ steps:
- success - success
- failure - failure
- name: Publish Image - name: Publish Image
image: docker image: plugins/docker
commands: settings:
# - 'docker login git.mifi.dev' auto_tag: true
- 'docker build -t git.mifi.dev/mifi/mifi/auth:latest -t git.mifi.dev/mifi/mifi/auth:${DRONE_TAG} .' repo: git.mifi.dev/mifi/mifi/auth
- docker push git.mifi.dev/mifi/mifi/auth:latest registry: git.mifi.dev
volumes: debug: true
- name: dockersock ssh-agent-key:
path: /var/run/docker.sock from_secret: reg_token
- name: dockerconfig username: <token>
path: /drone/grow/.docker/config.json password:
from_secret: reg_token
secrets: [reg_token]
- name: Report Image Publish Status - name: Report Image Publish Status
image: plugins/webhook image: plugins/webhook
settings: settings:
@@ -153,15 +141,15 @@ volumes:
host: host:
path: /volume1/docker/beethoven/labs-auth/.npmrc path: /volume1/docker/beethoven/labs-auth/.npmrc
# depends_on: depends_on:
# - Test Pipeline - Test Pipeline
trigger: trigger:
branch: # branch:
- main # - main
event: event:
- push # - push
# - tag - tag
--- ---
kind: pipeline kind: pipeline
@@ -220,12 +208,12 @@ volumes:
host: host:
path: /volume1/docker/beethoven/labs-auth/staging.env path: /volume1/docker/beethoven/labs-auth/staging.env
# depends_on: depends_on:
# - Test Pipeline - Test Pipeline
trigger: trigger:
branch: # branch:
- main # - main
event: event:
- push # - push
# - tag - tag

View File

@@ -5,14 +5,14 @@ COPY tsconfig.json ./
COPY lib ./lib COPY lib ./lib
RUN ls -a RUN ls -a
RUN yarn install RUN yarn install
RUN yarn build:production RUN yarn build
## this is stage two , where the app actually runs ## this is stage two , where the app actually runs
FROM node:20-alpine AS containerize FROM node:20-alpine AS containerize
ENV NODE_ENV ${ENV:-production}
WORKDIR /home/node/app WORKDIR /home/node/app
COPY package*.json ./ COPY package*.json ./
RUN yarn install --frozen-lockfile --production RUN yarn install --frozen-lockfile --production
COPY --from=0 /home/node/app/dist . COPY --from=0 /home/node/app/dist .
EXPOSE 9001 EXPOSE ${PORT}
EXPOSE 27017
CMD ["node","server/index.js"] CMD ["node","server/index.js"]

View File

@@ -9,6 +9,7 @@ services:
- docknet - docknet
volumes: volumes:
- '/volume1/docker/labs/auth/mongo:/data/db' - '/volume1/docker/labs/auth/mongo:/data/db'
# - ./mongo-init.js:/docker-entrypoint-initdb.d/mongo-init.js:ro
restart: unless-stopped restart: unless-stopped
image: mongo:latest image: mongo:latest
auth-service: auth-service:
@@ -17,7 +18,7 @@ services:
build: . build: .
container_name: ${CONTAINER_PREFIX}-auth-service container_name: ${CONTAINER_PREFIX}-auth-service
environment: environment:
- DB_HOST=${CONTAINER_PREFIX:-mifi}-auth-service_mongo - DB_HOST=${CONTAINER_PREFIX}-auth-service_mongo
labels: labels:
- 'traefik.enable=true' - 'traefik.enable=true'
- 'traefik.http.routers.grow.rule=Host(`${HOST}`) && Path(`${ROUTE_PREFIX}`)' - 'traefik.http.routers.grow.rule=Host(`${HOST}`) && Path(`${ROUTE_PREFIX}`)'

View File

@@ -1,6 +1,6 @@
{ {
"name": "@mifi/auth", "name": "@mifi/auth",
"version": "0.0.34", "version": "0.0.35",
"author": "mifi (Mike Fitzpatrick)", "author": "mifi (Mike Fitzpatrick)",
"license": "MIT", "license": "MIT",
"scripts": { "scripts": {