diff --git a/.circleci/config.yml b/.circleci/config.yml new file mode 100644 index 0000000..6c2f67a --- /dev/null +++ b/.circleci/config.yml @@ -0,0 +1,24 @@ +version: 2.1 +orbs: + node: circleci/node@5.1.0 + +jobs: + build_and_test: + executor: node/default + steps: + - checkout + - node/install-packages: + pkg-manager: npm + - run: + command: npm run build + name: Build app + - run: + command: npm run test + name: Run tests + - run: + command: npm run build-website + name: Build documentation + - persist_to_workspace: + root: ~/project + paths: + - . \ No newline at end of file diff --git a/.eslintrc.js b/.eslintrc.js index 7b676c3..87eb22d 100644 --- a/.eslintrc.js +++ b/.eslintrc.js @@ -1,3 +1,12 @@ +/* +* myevent - .eslintrc.js +* +* Created by Janis Hutz 02/26/2023, Licensed under the GPL V3 License +* https://janishutz.com, development@janishutz.com +* +* +*/ + module.exports = { 'env': { 'browser': true, diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..9b3cb07 --- /dev/null +++ b/.gitignore @@ -0,0 +1,14 @@ +# +# myevent - .gitignore +# +# Created by Janis Hutz 02/26/2023, Licensed under the GPL V3 License +# https://janishutz.com, development@janishutz.com +# +# + + +# ignore ALL .log files +*.log + +# ignore node_modules (can be rebuilt with npm i --> shrinks repo size) +node_modules \ No newline at end of file diff --git a/projectWebsite/index.html b/projectWebsite/index.html index 763b073..d0e2960 100644 --- a/projectWebsite/index.html +++ b/projectWebsite/index.html @@ -1 +1,12 @@ - \ No newline at end of file + + +
+