Skip to content
This repository has been archived by the owner on Nov 19, 2021. It is now read-only.

Commit

Permalink
Add base layout and index style
Browse files Browse the repository at this point in the history
  • Loading branch information
Allypost committed May 14, 2020
1 parent 76c1ecf commit b7a1c48
Show file tree
Hide file tree
Showing 68 changed files with 5,717 additions and 677 deletions.
8 changes: 8 additions & 0 deletions .docker/node/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,12 @@ ENV APP_ROOT /web
RUN mkdir ${APP_ROOT}
WORKDIR ${APP_ROOT}

RUN apk update \
# Required for Vuetify's Fibers dependency
&& apk add make python3 g++

RUN apk update \
# Required for image optimisation
&& apk add optipng libtool automake autoconf nasm build-base

CMD ["node"]
8 changes: 6 additions & 2 deletions .eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,11 @@ module.exports = {
browser: true,
node: true,
},
parserOptions: {
parser: 'babel-eslint'
},
extends: [
"@nuxtjs/eslint-config-typescript",
"@nuxtjs",
"plugin:nuxt/recommended",
],
// add your custom rules here
Expand Down Expand Up @@ -44,7 +47,7 @@ module.exports = {
},
],
"comma-style": [ "error", "last" ],
"computed-property-spacing": [ "error", "always" ],
"computed-property-spacing": [ "error", "never" ],
"dot-notation": "error",
"eqeqeq": [ "error", "always" ],
"guard-for-in": "error",
Expand Down Expand Up @@ -100,6 +103,7 @@ module.exports = {
"semi": [ "error", "always" ],
"space-before-blocks": [ "warn", "always" ],
"space-infix-ops": "error",
"template-curly-spacing": [ "error", "always" ],
"template-tag-spacing": [ "error", "never" ],
"wrap-iife": [ "error", "inside" ],
"yoda": [ "error", "always", { "exceptRange": true } ],
Expand Down
7 changes: 6 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -65,9 +65,12 @@ typings/
# next.js build output
.next

# nuxt.js build output
# nuxt.js temp build output
.nuxt

# nuxt.js prod build output
.nuxt-prod

# Nuxt generate
dist

Expand All @@ -88,3 +91,5 @@ sw.*

# Vim swap files
*.swp

docker-compose.override.yml
14 changes: 10 additions & 4 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,24 +1,30 @@
NODE_MODULES := ./node_modules

.PHONY: up dev down install yarn-install build clean restart
.PHONY: stop start up prod dev down restart reboot rebuild install yarn-install build clean build-containers

stop:
docker/compose stop

start:
docker/compose start

up: build
up:
docker/compose up -d

prod: build reboot

dev: $(NODE_MODULES)
docker/yarn dev
docker/yarn dev || exit 0
$(MAKE) down

down:
docker/compose down

restart: down up
restart: stop start

reboot: down up

rebuild: build restart

install: clean yarn-install

Expand Down
178 changes: 178 additions & 0 deletions assets/images/404.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
90 changes: 90 additions & 0 deletions assets/images/event-graphic.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
18 changes: 18 additions & 0 deletions assets/images/hero-graphic.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
38 changes: 38 additions & 0 deletions assets/images/hero-illustration.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 3 additions & 0 deletions assets/images/icons/facebook.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading

0 comments on commit b7a1c48

Please sign in to comment.