Skip to content

Commit d512140

Browse files
committed
init
1 parent 8feceff commit d512140

File tree

98 files changed

+22270
-1676
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

98 files changed

+22270
-1676
lines changed

.eslintrc.js

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
module.exports = {
2+
'extends': 'plugin:vue/essential'
3+
}

.gitignore

Lines changed: 35 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,35 @@
1-
.DS_Store
2-
run_server.sh
3-
.sass-cache/*
4-
_site/
5-
.idea/
1+
.DS_STORE
2+
scripts/flow/*/.flowconfig
3+
*~
4+
*.pyc
5+
.grunt
6+
_SpecRunner.html
7+
__benchmarks__
8+
build/
9+
remote-repo/
10+
coverage/
11+
.module-cache
12+
fixtures/dom/public/react-dom.js
13+
fixtures/dom/public/react.js
14+
test/the-files-to-test.generated.js
15+
*.log*
16+
chrome-user-data
17+
*.sublime-project
18+
*.sublime-workspace
19+
.idea
20+
*.iml
21+
.vscode
22+
*.swp
23+
*.swo
24+
25+
packages/react-devtools-core/dist
26+
packages/react-devtools-extensions/chrome/build
27+
packages/react-devtools-extensions/chrome/*.crx
28+
packages/react-devtools-extensions/chrome/*.pem
29+
packages/react-devtools-extensions/firefox/build
30+
packages/react-devtools-extensions/firefox/*.xpi
31+
packages/react-devtools-extensions/firefox/*.pem
32+
packages/react-devtools-extensions/shared/build
33+
packages/react-devtools-inline/dist
34+
packages/react-devtools-shell/dist
35+
node_modules

.travis.yml

Lines changed: 0 additions & 13 deletions
This file was deleted.

CNAME

Lines changed: 0 additions & 1 deletion
This file was deleted.

Dockerfile

Lines changed: 0 additions & 8 deletions
This file was deleted.

Gemfile

Lines changed: 0 additions & 8 deletions
This file was deleted.

Gemfile.lock

Lines changed: 0 additions & 265 deletions
This file was deleted.

README.md

Lines changed: 17 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -1,34 +1,24 @@
1-
NU Hacks
2-
=======
1+
# hacks
32

4-
The website for NUHacks, a Northeastern University student organization for hackers and makers.
5-
6-
## Local Server
7-
8-
```bash
9-
# 1. build image
10-
docker build -t nuhacks $PWD
11-
# 2. start container for the first time (use `-it` instead of `-p` for process to ocupy terminal)
12-
docker run --rm -it -p 4000:4000 --name nuhacks -v $PWD:/srv/jekyll nuhacks
3+
## Project setup
4+
```
5+
yarn install
136
```
147

15-
## Adding new announcments
16-
Create a new `.md` file that's descriptive of your announcement in `_announcements/`.
17-
18-
If you don't know Markdown, it's super easy to learn! Here's a [link][md-link] to get you started.
19-
20-
## Adding new mentors
21-
Add the following to `mentors.yml`:
22-
```yml
23-
- name: John Doe
24-
blurb: Stuff John Doe likes.
8+
### Compiles and hot-reloads for development
9+
```
10+
yarn serve
2511
```
2612

27-
That's it!
13+
### Compiles and minifies for production
14+
```
15+
yarn build
16+
```
2817

29-
## Adding more useful links
30-
To add a link to the "Useful links" section, modify `links.yml` and add your link in the following format:
31-
```yml
32-
- title: Name of the link to display
33-
url: The actual link
18+
### Lints and fixes files
3419
```
20+
yarn lint
21+
```
22+
23+
### Customize configuration
24+
See [Configuration Reference](https://cli.vuejs.org/config/).

0 commit comments

Comments
 (0)