Skip to content

Commit

Permalink
Merge pull request #2 from VolvoxLLC/routine-updates
Browse files Browse the repository at this point in the history
Initial Routine Updates
  • Loading branch information
BillChirico authored Oct 21, 2023
2 parents 93acc3e + f6572aa commit ddb8037
Show file tree
Hide file tree
Showing 19 changed files with 12,103 additions and 5,813 deletions.
25 changes: 25 additions & 0 deletions .dockerignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
**/.dockerignore
**/.env
**/.git
**/.gitignore
**/.project
**/.settings
**/.toolstarget
**/.vs
**/.vscode
**/.idea
**/*.*proj.user
**/*.dbmdl
**/*.jfm
**/azds.yaml
**/bin
**/charts
**/docker-compose*
**/Dockerfile*
**/node_modules
**/npm-debug.log
**/obj
**/secrets.dev.yaml
**/values.dev.yaml
LICENSE
README.md
486 changes: 486 additions & 0 deletions .editorconfig

Large diffs are not rendered by default.

25 changes: 25 additions & 0 deletions .eslintrc.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
const { resolve } = require("node:path")

const project = resolve(__dirname, "tsconfig.json")

module.exports = {
root: true,
extends: [
require.resolve("@vercel/style-guide/eslint/browser"),
require.resolve("@vercel/style-guide/eslint/react"),
require.resolve("@vercel/style-guide/eslint/next"),
require.resolve("@vercel/style-guide/eslint/node"),
require.resolve("@vercel/style-guide/eslint/typescript")
],
parserOptions: { project },
settings: { "import/resolver": { typescript: { project } } },
rules: {
"@typescript-eslint/explicit-function-return-type": 1,
"@typescript-eslint/no-misused-promises": 2,
"import/no-extraneous-dependencies": 2,
"import/order": 2,
"no-console": 1,
"react/jsx-sort-props": 2,
}
// Note: 0 = off, 1 = warn, 2 = error
}
69 changes: 69 additions & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1,69 @@
###############################################################################
# Set default behavior to automatically normalize line endings.
###############################################################################
* text=auto eol=crlf

*.sh text=auto eol=lf
*.tf text=auto eol=lf
*.tmpl text=auto eol=lf
*.tfstate text=auto eol=lf
*.tfstate.backup text=auto eol=lf

###############################################################################
# Set default behavior for command prompt diff.
#
# This is need for earlier builds of msysgit that does not have it on by
# default for csharp files.
# Note: This is only used by command line
###############################################################################
#*.cs diff=csharp

###############################################################################
# Set the merge driver for project and solution files
#
# Merging from the command prompt will add diff markers to the files if there
# are conflicts (Merging from VS is not affected by the settings below, in VS
# the diff markers are never inserted). Diff markers may cause the following
# file extensions to fail to load in VS. An alternative would be to treat
# these files as binary and thus will always conflict and require user
# intervention with every merge. To do so, just uncomment the entries below
###############################################################################
#*.sln merge=binary
#*.csproj merge=binary
#*.vbproj merge=binary
#*.vcxproj merge=binary
#*.vcproj merge=binary
#*.dbproj merge=binary
#*.fsproj merge=binary
#*.lsproj merge=binary
#*.wixproj merge=binary
#*.modelproj merge=binary
#*.sqlproj merge=binary
#*.wwaproj merge=binary

###############################################################################
# behavior for image files
#
# image files are treated as binary by default.
###############################################################################
#*.jpg binary
#*.png binary
#*.gif binary

###############################################################################
# diff behavior for common document formats
#
# Convert binary document formats to text before diffing them. This feature
# is only available from the command line. Turn it on by uncommenting the
# entries below.
###############################################################################
#*.doc diff=astextplain
#*.DOC diff=astextplain
#*.docx diff=astextplain
#*.DOCX diff=astextplain
#*.dot diff=astextplain
#*.DOT diff=astextplain
#*.pdf diff=astextplain
#*.PDF diff=astextplain
#*.rtf diff=astextplain
#*.RTF diff=astextplain
4 changes: 2 additions & 2 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@ updates:

# Maintain dependencies for npm
- package-ecosystem: "npm"
directory: "src/Volvox.Apollo.Web/ClientApp"
directory: "/"
schedule:
interval: "daily"
versioning-strategy: increase
versioning-strategy: auto
assignees:
- "ethan-guest"
reviewers:
Expand Down
20 changes: 20 additions & 0 deletions .github/workflows/build-and-test.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: Build & Test

on:
push:
branches: ["master"]
pull_request:
branches: ["master"]

jobs:
build:
runs-on: ubuntu-latest

steps:
- uses: actions/[email protected]
- uses: actions/[email protected]
with:
node-version: 18
- run: npm ci
- run: npm run build
# - run: npm test
Loading

0 comments on commit ddb8037

Please sign in to comment.