Skip to content

Commit

Permalink
added empty colloq slides
Browse files Browse the repository at this point in the history
  • Loading branch information
RBEGamer committed Jan 24, 2024
1 parent d84dbd3 commit e098235
Show file tree
Hide file tree
Showing 14 changed files with 21,265 additions and 0 deletions.
130 changes: 130 additions & 0 deletions documentation/colloquium/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,130 @@
# Logs
logs
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*
lerna-debug.log*
.pnpm-debug.log*

# Diagnostic reports (https://nodejs.org/api/report.html)
report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json

# Runtime data
pids
*.pid
*.seed
*.pid.lock

# Directory for instrumented libs generated by jscoverage/JSCover
lib-cov

# Coverage directory used by tools like istanbul
coverage
*.lcov

# nyc test coverage
.nyc_output

# Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files)
.grunt

# Bower dependency directory (https://bower.io/)
bower_components

# node-waf configuration
.lock-wscript

# Compiled binary addons (https://nodejs.org/api/addons.html)
build/Release

# Dependency directories
node_modules/
jspm_packages/

# Snowpack dependency directory (https://snowpack.dev/)
web_modules/

# TypeScript cache
*.tsbuildinfo

# Optional npm cache directory
.npm

# Optional eslint cache
.eslintcache

# Optional stylelint cache
.stylelintcache

# Microbundle cache
.rpt2_cache/
.rts2_cache_cjs/
.rts2_cache_es/
.rts2_cache_umd/

# Optional REPL history
.node_repl_history

# Output of 'npm pack'
*.tgz

# Yarn Integrity file
.yarn-integrity

# dotenv environment variable files
.env
.env.development.local
.env.test.local
.env.production.local
.env.local

# parcel-bundler cache (https://parceljs.org/)
.cache
.parcel-cache

# Next.js build output
.next
out

# Nuxt.js build / generate output
.nuxt
dist

# Gatsby files
.cache/
# Comment in the public line in if your project uses Gatsby and not Next.js
# https://nextjs.org/blog/next-9-1#public-directory-support
# public

# vuepress build output
.vuepress/dist

# vuepress v2.x temp and cache directory
.temp
.cache

# Docusaurus cache and generated files
.docusaurus

# Serverless directories
.serverless/

# FuseBox cache
.fusebox/

# DynamoDB Local files
.dynamodb/

# TernJS port file
.tern-port

# Stores VSCode versions used for testing VSCode extensions
.vscode-test

# yarn v2
.yarn/cache
.yarn/unplugged
.yarn/build-state.yml
.yarn/install-state.gz
.pnp.*
19 changes: 19 additions & 0 deletions documentation/colloquium/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
FROM node:lts-buster
#chromium for pdf export
#RUN apt-get update && apt-get install -y libglu1 chromium
COPY . ./base
#RUN mkdir /base
WORKDIR /base
RUN chmod +x ./run.sh
RUN ls /base && sleep 1

ENV NODE_OPTIONS=--openssl-legacy-provider

RUN npm install
RUN npm i @fusuma/task-pdf
RUN npm i mermaid
RUN npm audit fix --force || true
RUN chown -R node:node /base
USER node

ENTRYPOINT ["/base/run.sh"]
16 changes: 16 additions & 0 deletions documentation/colloquium/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
# Colloquium

## Introduction
This is a naive implementation of getting **fusuma** working through docker.
The **fusuma** port is 8080: `http://localhost:8080`.


## Usage

From the parent directory with the `slides` directory (intended to run **fusuma**)

```bash
bash ./run_docker.sh
```


8 changes: 8 additions & 0 deletions documentation/colloquium/docker-compose.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
services:
mrpsciencemeeting:
image: mrpcolloquium:latest
build:
context: .
dockerfile: Dockerfile
ports:
- "8080:8080"
34 changes: 34 additions & 0 deletions documentation/colloquium/fusumarc.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
meta:
title: Development of a hardware and software framework for the automated characterization of permanent magnets for low-field MRI systems
thumbnail:
description: Development of a hardware and software framework for the automated characterization of permanent magnets for low-field MRI systems
sns:
- twitter
slide:
loop: false
sidebar: true
targetBlank: true
showIndex: true
isVertical: false
ui:
sidebar: true
vertical: false
pagination: bullets | progressbar #| fraction
effect: fade # #| cube | flip
code:
languages:
- javascript
- python
- html
plugins:
- line-numbers
theme: tomorrow #pop #default
chart: true
math: true
extends:
js:
css: ./style.css
webpack:
build:
ssr: true
useCache: false
Empty file.
Loading

0 comments on commit e098235

Please sign in to comment.