Skip to content

Commit

Permalink
Added all the scaffolding necessary for the client
Browse files Browse the repository at this point in the history
  • Loading branch information
StanleyMasinde committed May 1, 2021
1 parent f6959f4 commit 3dc2c8a
Show file tree
Hide file tree
Showing 37 changed files with 8,821 additions and 34,683 deletions.
1 change: 0 additions & 1 deletion .env.example

This file was deleted.

4 changes: 1 addition & 3 deletions .eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,10 @@ module.exports = {
},
extends: [
'@nuxtjs',
'prettier',
'prettier/vue',
'plugin:prettier/recommended',
'plugin:nuxt/recommended',
],
plugins: ['prettier'],
plugins: [],
// add your custom rules here
rules: {},
}
1 change: 0 additions & 1 deletion .github/FUNDING.yml

This file was deleted.

38 changes: 0 additions & 38 deletions .github/ISSUE_TEMPLATE/bug_report.md

This file was deleted.

20 changes: 0 additions & 20 deletions .github/ISSUE_TEMPLATE/feature_request.md

This file was deleted.

8 changes: 4 additions & 4 deletions .github/workflows/dependabot.yml → .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@ updates:
time: '00:00'
open-pull-requests-limit: 10
reviewers:
- stanleymasinde
- stanley masinde
assignees:
- stanleymasinde
- stanley masinde
commit-message:
prefix: fix
prefix-development: chore
Expand All @@ -23,9 +23,9 @@ updates:
time: '00:00'
open-pull-requests-limit: 10
reviewers:
- stanleymasinde
- stanley masinde
assignees:
- stanleymasinde
- stanley masinde
commit-message:
prefix: fix
prefix-development: chore
Expand Down
45 changes: 45 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
name: ci

on:
push:
branches:
- main
- master
pull_request:
branches:
- main
- master

jobs:
ci:
runs-on: ${{ matrix.os }}

strategy:
matrix:
os: [ubuntu-latest]
node: [14]

steps:
- name: Checkout 🛎
uses: actions/checkout@master

- name: Setup node env 🏗
uses: actions/setup-node@v2.1.2
with:
node-version: ${{ matrix.node }}
check-latest: true

- name: Cache node_modules 📦
uses: actions/cache@v2
with:
path: ~/.npm
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-node-
- name: Install dependencies 👨🏻‍💻
run: npm ci

- name: Run linter 👀
run: npm run lint

67 changes: 0 additions & 67 deletions .github/workflows/codeql-analysis.yml

This file was deleted.

2 changes: 0 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -88,5 +88,3 @@ sw.*

# Vim swap files
*.swp

tests_output
21 changes: 0 additions & 21 deletions LICENSE

This file was deleted.

2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# client
# deployer

## Build Setup

Expand Down
11 changes: 0 additions & 11 deletions SECURITY.md

This file was deleted.

7 changes: 0 additions & 7 deletions assets/README.md

This file was deleted.

1 change: 0 additions & 1 deletion backend/app.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@ app.use(logger('dev'))
app.use(express.json())
app.use(express.urlencoded({ extended: false }))
app.use(cookieParser())
app.use(express.static(path.join(__dirname, 'public')))

app.use('/', indexRouter)
app.use('/users', usersRouter)
Expand Down
85 changes: 0 additions & 85 deletions backend/bin/www

This file was deleted.

13 changes: 0 additions & 13 deletions backend/public/index.html

This file was deleted.

8 changes: 0 additions & 8 deletions backend/public/stylesheets/style.css

This file was deleted.

Loading

0 comments on commit 3dc2c8a

Please sign in to comment.