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

Fall 2019 #44

Open
wants to merge 5 commits into
base: dev
Choose a base branch
from
Open
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
92 changes: 92 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,95 @@

node_modules
public
### Node template
# Logs
logs
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*
lerna-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/

# TypeScript v1 declaration files
typings/

# TypeScript cache
*.tsbuildinfo

# Optional npm cache directory
.npm

# Optional eslint cache
.eslintcache

# Optional REPL history
.node_repl_history

# Output of 'npm pack'
*.tgz

# Yarn Integrity file
.yarn-integrity

# dotenv environment variables file
.env
.env.test

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

# next.js build output
.next

# nuxt.js build output
.nuxt

# vuepress build output
.vuepress/dist

# Serverless directories
.serverless/

# FuseBox cache
.fusebox/

# DynamoDB Local files
.dynamodb/


.idea
6 changes: 6 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
FROM node:carbon
WORKDIR /app
COPY package.json .
COPY package-lock.json .
RUN ["npm", "install"]
ENTRYPOINT ["npm", "run"]
19 changes: 19 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,25 @@ all the human mentors, the [Sass](http://sass-lang.com/) files, and any other
static assets into nice html/css files. And then we serve them up on a platter
using [Github Pages](https://pages.github.com/).

## Using Jennings' Docker Container

Alice Young's original instructions below might not work because *depEnDENcIES*.

```bash
# first, build the harpjs container
npm run container:install
# preview server
npm run container:dev
```

`gh-pages` should be used on the **host** machine instead.
```bash
npm i --only=dev
npm run container:deploy
```

## Alice Young's Instructions

### Versions:
This project _should_ work on:
* harp: v0.24.0
Expand Down
6 changes: 6 additions & 0 deletions _harp/.editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
root = true

[*.json]
indent_style = space
indent_size = 4
end_of_line = lf
2 changes: 1 addition & 1 deletion _harp/CNAME
Original file line number Diff line number Diff line change
@@ -1 +1 @@
mentors.hacks.io
mentors.nuhacks.io
29 changes: 28 additions & 1 deletion _harp/_data.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,31 @@
[
{
"name": "Jennings Zhang",
"desc": "Opinionated and awkward person ;-;",
"github": "jennydaman",
"www": "https://pro.teaso.me/resume",
"email": "[email protected]",
"ccis": "jenni",
"langs": [
"JavaScript",
"Python",
"Java",
"LaTeX",
"Bash",
"Docker",
"Linux"
],
"interests": [
"Computational Medicine",
"Human gut microbiome",
"Neuroinformatics",
"Education (fundies bad)",
"Cybersecurity",
"{{buzzword[8]}}",
"Philosophy and Debate",
"Chinese tea"
]
},
{
"name":"Milo \"Pigslayer\" Davis",
"github":"milodavis",
Expand Down Expand Up @@ -150,7 +177,7 @@
{
"name" : "Jacob Aronoff",
"desc" : "Your friendly neighborhood hackermans.",
"github" : "jaronoff97",
"github" : "jaronoff97",
"www":"http://jaronoff.com",
"email" : "[email protected]",
"interests" : [
Expand Down
Loading