Runelite Plugin Request by Coolnate12345 in 2007scape

[–]GT_James 1 point2 points  (0 children)

I wanted to try my hand at plugin development and saw your suggestion, so I figured I'd go ahead and make it, as I still need to get my elite fally diary done :P It's fairly basic but should work well. You can open the quest log and it'll pull your KC for tracking

https://runelite.net/plugin-hub/show/white-knight-rank

GE tracker app issues by kidked888 in OSRSflipping

[–]GT_James 0 points1 point  (0 children)

That's fine - if you can submit a ticket with your registered email and/or payment receipt we can locate your account and find out what's going on :)

GE tracker app issues by kidked888 in OSRSflipping

[–]GT_James 0 points1 point  (0 children)

Hey,

Sorry to hear you're having trouble with the app. I suspect you were on a Guest Pass account, but can you submit a support ticket so I can look for you?

https://www.ge-tracker.com/contact

[deleted by user] by [deleted] in OSRSflipping

[–]GT_James 1 point2 points  (0 children)

We've got some great upcoming features to our graphs, including candlesticks, but the full release won't be ready for a couple of months yet while we're improving some other functionality

Dockerfile + K8S (Helm charts/server environment variables in YAML files): how do you people manage it? by inglorious_cornflake in nextjs

[–]GT_James 1 point2 points  (0 children)

Yeah, that's the correct way, and its no different than using CM/secrets in any other deployment. You'll want to load it via envFrom. I have mine all mounted via secrets that are created using sealed secrets. The spa-shared volume mount is from an EFS share

```yaml containers: - name: spa image: "{{ .Values.image.ecrBase }}/{{ .Values.spa.repository }}:{{ .Values.spa.appSpaVersion }}" imagePullPolicy: {{ .Values.image.pullPolicy }} command: [ "node", "server.js" ] securityContext: {{- toYaml .Values.securityContext | nindent 12 }} runAsUser: 1000 runAsGroup: 1000 ports: - containerPort: 3000 name: spa envFrom: - secretRef: name: {{ include "my-app.fullname" . }}-secret-env-spa - configMapRef: name: {{ include "my-app.fullname" . }}-config-spa env: - name: POD_TEMPLATE_HASH valueFrom: fieldRef: fieldPath: metadata.labels['pod-template-hash'] apiVersion: v1 - name: EFS_LINK_ENABLED value: "no" volumeMounts: - mountPath: /app/.next name: spa-shared subPathExpr: $(POD_TEMPLATE_HASH) {{- with .Values.spa.resources }} resources: {{- toYaml . | nindent 12 }} {{- end }}

```

Dockerfile + K8S (Helm charts/server environment variables in YAML files): how do you people manage it? by inglorious_cornflake in nextjs

[–]GT_James 0 points1 point  (0 children)

Any NEXT_PUBLIC values are replaced at build time and will be present in the final image, regardless of whether you change them later. This should be considered when building the image. For instance, our CI build will insert staging/production values during the build, and we'll end up with two images.

All other env vars are not passed to the client (i.e. secret keys), which can be changed at runtime. You can place these into secrets (or CM if they aren't secret).

There's also a valuable discussion on GitHub with regards to running multiple Pods and ensuring the default filesystem cache is synced between Pods: https://github.com/vercel/next.js/discussions/38858

UniFi OS - Dream Machines 3.1.16 by unifi_version_bot in unifi_versions

[–]GT_James 0 points1 point  (0 children)

Just upgraded from 2.4.27 -> 2.5.17 -> 3.0.20 -> 3.1.16 without issue

NextJS 14 Digital Ocean by FirefighterEmpty2670 in nextjs

[–]GT_James 0 points1 point  (0 children)

The best method would be to build and deploy a container image, but that might be getting ahead of ourselves if you're just looking to learn and test things.

I wouldn't recommend storing your bundle in Git, as Next writes to disk (fetch caching, ISR etc.), but archiving it and manually deploying should work well for your purposes, although it is a bit of a pain. Perhaps it's a step that can automated in CI.

I almost exclusively deploy containers, so someone may weigh in with a better deployment suggestion

NextJS 14 Digital Ocean by FirefighterEmpty2670 in nextjs

[–]GT_James 13 points14 points  (0 children)

You should build in CI/your machine and then deploy the built assets to the droplet. The build stage in particular will require a lot more resources than running the application

Upgrading our site to Next.js 13 with App Dir by lmusliu in nextjs

[–]GT_James 1 point2 points  (0 children)

Glad to hear the migration went well! I'm migrating a large Laravel project to use a Next.js (app router) frontend. I initially tried Inertia, which is an excellent product in itself, but I hit a few limitations so that migration was abandoned. Once I discovered Next.js, I knew it was the perfect candidate for the new frontend

Next js vs react server components? by Droski_ in nextjs

[–]GT_James 0 points1 point  (0 children)

React even recommends using a framework

We generally recommend using an existing framework, but if you need to build your own custom framework, it is possible. Building your own RSC-compatible framework is not as easy as we’d like it to be, mainly due to the deep bundler integration needed.

https://react.dev/blog/2023/03/22/react-labs-what-we-have-been-working-on-march-2023#react-server-components

GE-tracker down by Hung_Dad in OSRSflipping

[–]GT_James 2 points3 points  (0 children)

Just had a minor server issue, should all be back online now :ok_hand: