mirror of
https://github.com/cupcakearmy/memoir.git
synced 2024-12-23 00:26:28 +00:00
Compare commits
No commits in common. "dcef283b92f0a32a5ad791f4ac1f793f734630d4" and "9a5d3ca87df6edaa858dde5e82d112ccca3b8d99" have entirely different histories.
dcef283b92
...
9a5d3ca87d
5
next-env.d.ts
vendored
5
next-env.d.ts
vendored
@ -1,5 +0,0 @@
|
|||||||
/// <reference types="next" />
|
|
||||||
/// <reference types="next/image-types/global" />
|
|
||||||
|
|
||||||
// NOTE: This file should not be edited
|
|
||||||
// see https://nextjs.org/docs/pages/building-your-application/configuring/typescript for more information.
|
|
@ -1,13 +1,12 @@
|
|||||||
import nextra from 'nextra'
|
const withNextra = require('nextra')({
|
||||||
|
|
||||||
const withNextra = nextra({
|
|
||||||
theme: 'nextra-theme-docs',
|
theme: 'nextra-theme-docs',
|
||||||
themeConfig: './theme.config.jsx',
|
themeConfig: './theme.config.jsx',
|
||||||
})
|
})
|
||||||
|
|
||||||
export default withNextra({
|
module.exports = {
|
||||||
|
...withNextra(),
|
||||||
output: 'export',
|
output: 'export',
|
||||||
images: {
|
images: {
|
||||||
unoptimized: true,
|
unoptimized: true,
|
||||||
},
|
},
|
||||||
})
|
}
|
||||||
|
21
package.json
21
package.json
@ -1,21 +1,16 @@
|
|||||||
{
|
{
|
||||||
"private": true,
|
"private": true,
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"type": "module",
|
"packageManager": "pnpm@8.15.4",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"build": "NEXT_TELEMETRY_DISABLED=1 next build",
|
|
||||||
"dev": "NEXT_TELEMETRY_DISABLED=1 next dev",
|
"dev": "NEXT_TELEMETRY_DISABLED=1 next dev",
|
||||||
"start": "pnpm dlx serve out"
|
"build": "NEXT_TELEMETRY_DISABLED=1 next build"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"next": "^14.2.15",
|
"next": "^14.1.2",
|
||||||
"nextra": "^3.0.15",
|
"nextra": "^2.13.4",
|
||||||
"nextra-theme-docs": "^3.0.15",
|
"nextra-theme-docs": "^2.13.4",
|
||||||
"react": "^18.3.1",
|
"react": "^18.2.0",
|
||||||
"react-dom": "^18.3.1"
|
"react-dom": "^18.2.0"
|
||||||
},
|
}
|
||||||
"devDependencies": {
|
|
||||||
"@types/node": "22.7.7"
|
|
||||||
},
|
|
||||||
"packageManager": "pnpm@9.12.2"
|
|
||||||
}
|
}
|
||||||
|
3
pages/_app.mdx
Normal file
3
pages/_app.mdx
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
export default function App({ Component, pageProps }) {
|
||||||
|
return <Component {...pageProps} />
|
||||||
|
}
|
8
pages/_meta.json
Normal file
8
pages/_meta.json
Normal file
@ -0,0 +1,8 @@
|
|||||||
|
{
|
||||||
|
"index": "Intro",
|
||||||
|
"cli": "CLI",
|
||||||
|
"git": "Git",
|
||||||
|
"dev_ops": "Dev Ops",
|
||||||
|
"latex": "LaTeX",
|
||||||
|
"web_dev": "Web Development"
|
||||||
|
}
|
@ -1,8 +0,0 @@
|
|||||||
export default {
|
|
||||||
index: 'Intro',
|
|
||||||
cli: 'CLI',
|
|
||||||
git: 'Git',
|
|
||||||
dev_ops: 'Dev Ops',
|
|
||||||
latex: 'LaTeX',
|
|
||||||
web_dev: 'Web Development',
|
|
||||||
}
|
|
4
pages/dev_ops/_meta.json
Normal file
4
pages/dev_ops/_meta.json
Normal file
@ -0,0 +1,4 @@
|
|||||||
|
{
|
||||||
|
"github-actions": "Github Actions",
|
||||||
|
"hosting": "Hosting"
|
||||||
|
}
|
@ -1,4 +0,0 @@
|
|||||||
export default {
|
|
||||||
'github-actions': 'Github Actions',
|
|
||||||
hosting: 'Hosting',
|
|
||||||
}
|
|
@ -22,15 +22,15 @@ jobs:
|
|||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- name: Set up QEMU
|
- name: Set up QEMU
|
||||||
uses: docker/setup-qemu-action@v3
|
uses: docker/setup-qemu-action@v2
|
||||||
- name: Set up Docker Buildx
|
- name: Set up Docker Buildx
|
||||||
uses: docker/setup-buildx-action@v3
|
uses: docker/setup-buildx-action@v2
|
||||||
with:
|
with:
|
||||||
install: true
|
install: true
|
||||||
|
|
||||||
- name: Docker Labels
|
- name: Docker Labels
|
||||||
id: meta
|
id: meta
|
||||||
uses: docker/metadata-action@v5
|
uses: docker/metadata-action@v4
|
||||||
with:
|
with:
|
||||||
images: |
|
images: |
|
||||||
foo/bar
|
foo/bar
|
||||||
@ -43,19 +43,19 @@ jobs:
|
|||||||
type=semver,pattern={{major}}
|
type=semver,pattern={{major}}
|
||||||
|
|
||||||
- name: Log in to Docker Hub
|
- name: Log in to Docker Hub
|
||||||
uses: docker/login-action@v3
|
uses: docker/login-action@v2
|
||||||
with:
|
with:
|
||||||
username: ${{ secrets.DOCKER_USERNAME }}
|
username: ${{ secrets.DOCKER_USERNAME }}
|
||||||
password: ${{ secrets.DOCKER_TOKEN }}
|
password: ${{ secrets.DOCKER_TOKEN }}
|
||||||
- name: Log in to the Container registry
|
- name: Log in to the Container registry
|
||||||
uses: docker/login-action@v3
|
uses: docker/login-action@v2
|
||||||
with:
|
with:
|
||||||
registry: ghcr.io
|
registry: ghcr.io
|
||||||
username: ${{ github.actor }}
|
username: ${{ github.actor }}
|
||||||
password: ${{ secrets.GITHUB_TOKEN }}
|
password: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
|
||||||
- name: Build and push
|
- name: Build and push
|
||||||
uses: docker/build-push-action@v5
|
uses: docker/build-push-action@v3
|
||||||
with:
|
with:
|
||||||
platforms: linux/amd64,linux/arm64
|
platforms: linux/amd64,linux/arm64
|
||||||
push: true
|
push: true
|
||||||
|
@ -1,14 +0,0 @@
|
|||||||
---
|
|
||||||
tags:
|
|
||||||
- docker registry
|
|
||||||
- hosting
|
|
||||||
- authentication
|
|
||||||
---
|
|
||||||
|
|
||||||
# Setup you own authenticated Docker Registry
|
|
||||||
|
|
||||||
## Resources
|
|
||||||
|
|
||||||
- https://earthly.dev/blog/private-docker-registry/
|
|
||||||
- https://www.digitalocean.com/community/tutorials/how-to-set-up-a-private-docker-registry-on-ubuntu-20-04
|
|
||||||
- https://github.com/docker/get-involved/blob/90c9470fd66c9318fec9c6f0914cb70fa87b9bf9/content/en/docs/CommunityLeaders/EventHandbooks/Docker101/registry/_index.md?plain=1#L203
|
|
@ -3,9 +3,5 @@
|
|||||||
How to reset files from another branch.
|
How to reset files from another branch.
|
||||||
|
|
||||||
```sh
|
```sh
|
||||||
# New way
|
|
||||||
git restore my/file.md
|
|
||||||
|
|
||||||
# Old way
|
|
||||||
git checkout origin/HEAD -- my/file.md
|
git checkout origin/HEAD -- my/file.md
|
||||||
```
|
```
|
||||||
|
4795
pnpm-lock.yaml
generated
4795
pnpm-lock.yaml
generated
File diff suppressed because it is too large
Load Diff
@ -1,28 +0,0 @@
|
|||||||
{
|
|
||||||
"compilerOptions": {
|
|
||||||
"lib": [
|
|
||||||
"dom",
|
|
||||||
"dom.iterable",
|
|
||||||
"esnext"
|
|
||||||
],
|
|
||||||
"allowJs": true,
|
|
||||||
"skipLibCheck": true,
|
|
||||||
"strict": false,
|
|
||||||
"noEmit": true,
|
|
||||||
"incremental": true,
|
|
||||||
"module": "esnext",
|
|
||||||
"esModuleInterop": true,
|
|
||||||
"moduleResolution": "node",
|
|
||||||
"resolveJsonModule": true,
|
|
||||||
"isolatedModules": true,
|
|
||||||
"jsx": "preserve"
|
|
||||||
},
|
|
||||||
"include": [
|
|
||||||
"next-env.d.ts",
|
|
||||||
"**/*.ts",
|
|
||||||
"**/*.tsx"
|
|
||||||
],
|
|
||||||
"exclude": [
|
|
||||||
"node_modules"
|
|
||||||
]
|
|
||||||
}
|
|
Loading…
Reference in New Issue
Block a user