Skip to content

Commit

Permalink
Merge pull request #95 from uwasystemhealth/develop
Browse files Browse the repository at this point in the history
Version 1.0.0 official deployment of IndEAA
  • Loading branch information
frinzekt committed Feb 8, 2021
2 parents 5d26cb2 + dc71fc7 commit 341f774
Show file tree
Hide file tree
Showing 453 changed files with 35,503 additions and 15,376 deletions.
22 changes: 22 additions & 0 deletions .env-template
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
#================================NODE_APP
APP_NAME=IndEAA
NODE_ENV=development

#================================CONFIG_FOR_FRONTEND
NEXT_PUBLIC_BACKEND_URL=http://localhost:3030


#================================CONFIG_FOR_BACKEND
AUTHENTICATION_SECRET=secret
FRONTEND_REDIRECT_URL=http://localhost:10004
BACKEND_HOST_CALLBACK=http://localhost:10006/oauth/google/callback

#================================MONGO
MONGO_INITDB_DATABASE=db
MONGO_INITDB_ROOT_USERNAME=admin
MONGO_INITDB_ROOT_PASSWORD=admin
MONGO_URI=uri

#================================GOOGLE_OAUTH
GOOGLE_OAUTH_KEY=key
GOOGLE_OAUTH_SECRET=secret
24 changes: 24 additions & 0 deletions .github/workflows/docs.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
# Workflow for deploying to github
name: Publish docs via GitHub Pages
on:
push:
branches:
- master
- mkdocs
- main
workflow_dispatch:

jobs:
build:
name: Deploy docs
runs-on: ubuntu-latest
steps:
- name: Checkout main
uses: actions/checkout@v1

- name: Deploy docs
uses: mhausenblas/mkdocs-deploy-gh-pages@master
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
CONFIG_FILE: mkdocs/mkdocs.yml
REQUIREMENTS: mkdocs/requirements.txt
42 changes: 42 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
# This workflow will run tests using node and then publish a package to GitHub Packages when a release is created
# For more information see: https://help.github.com/actions/language-and-framework-guides/publishing-nodejs-packages

name: Main CI Pipeline

on:
push:
branches:
- "main"
pull_request:
workflow_dispatch:
inputs:
logLevel:
description: "Log level"
required: false
default: "warning"

jobs:
frontend-check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: bahmutov/npm-install@v1
with:
install-command: yarn --frozen-lockfile --silent
working-directory: client
- name: Run Linting
run: npm run lint
working-directory: client

backend-check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: bahmutov/npm-install@v1
with:
install-command: yarn --frozen-lockfile --silent
working-directory: server
- name: Run Linting
run: npm run lint
working-directory: server

128 changes: 128 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,128 @@
# docker compose
mongo/

# ENV
.env
.env-development
.env-production

# Mkdocs Build
site/

# 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/

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

# TypeScript cache
*.tsbuildinfo

# Optional npm cache directory
.npm

# Optional eslint cache
.eslintcache

# 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 variables file
.env
.env.test

# 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

# 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.*
server/support/scratch.js
22 changes: 22 additions & 0 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
{
"configurations": [
{
"name": "Docker: Attach to Node",
"type": "node",
"request": "attach",
"port": 9229,
"address": "localhost",
"localRoot": "${workspaceFolder}/server",
"remoteRoot": "/app_code",
"protocol": "inspector",
"restart": true
},
{
"type": "node",
"name": "Attach to Socket",
"request": "attach",
"port": 9229,
"restart": true
}
]
}
46 changes: 0 additions & 46 deletions Indeaa/.gitignore

This file was deleted.

27 changes: 0 additions & 27 deletions Indeaa/README.md

This file was deleted.

Loading

0 comments on commit 341f774

Please sign in to comment.