Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Improve mean, eccentric, and true anomaly descriptions #16

Draft
wants to merge 7 commits into
base: main
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .devcontainer/Dockerfile.math-api
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
# syntax=docker/dockerfile:1
FROM node:20-alpine AS deps
FROM node:22-alpine AS deps

WORKDIR /usr/src/app
ADD https://github.com/bryanwweber/math-api.git .
RUN yarn install --frozen-lockfile

FROM node:20-alpine AS builder
FROM node:22-alpine AS builder
WORKDIR /usr/src/app
COPY --from=deps /usr/src/app/server.ts .
COPY --from=deps /usr/src/app/index.ts .
Expand All @@ -15,7 +15,7 @@ COPY --from=deps /usr/src/app/package.json .
COPY --from=deps /usr/src/app/node_modules ./node_modules
RUN npm run build

FROM node:20-alpine as runner
FROM node:22-alpine AS runner

WORKDIR /usr/src/app
ENV NODE_ENV=production
Expand Down
8 changes: 8 additions & 0 deletions .mise.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ python = "3.12"
uv = "latest"
julia = "latest"
bun = "latest"
node = "22"

[env]
_.python.venv = { path = ".venv", create = true }
Expand Down Expand Up @@ -32,3 +33,10 @@ format = { depends = [
"ruff_format_format",
"markdownlint_format",
], description = "Run all the formatting tools", env = { MISE_JOBS = "1" } }
julia_upgrade = { run = "julia --project=. -e 'using Pkg; Pkg.update()'", description = "Upgrade Julia dependencies" }
julia_install = { run = "julia --project=. -e 'using Pkg; Pkg.instantiate()'", description = "Install Julia dependencies", depends = [
"julia_upgrade",
] }
julia = { depends = [
"julia_install",
], description = "Upgrade and install Julia dependencies", env = { MISE_JOBS = "1" } }
Loading