From a9f46c3631bd5daf1184941ae167a4074c60e46c Mon Sep 17 00:00:00 2001 From: Alexander Popov Date: Sun, 4 Jul 2021 12:26:38 +0300 Subject: [PATCH] =?UTF-8?q?init=20=F0=9F=8F=B4=E2=80=8D=E2=98=A0=EF=B8=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .gitignore | 2 ++ HISTORY.md | 10 ++++++++++ LICENSE | 2 +- TODO.md | 1 + docs/.nojekyll | 0 docs/README.md | 3 +++ docs/index.html | 22 ++++++++++++++++++++++ package.json | 23 +++++++++++++++++++++++ 8 files changed, 62 insertions(+), 1 deletion(-) create mode 100644 .gitignore create mode 100644 HISTORY.md create mode 100644 TODO.md create mode 100644 docs/.nojekyll create mode 100644 docs/README.md create mode 100644 docs/index.html create mode 100644 package.json diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..504afef --- /dev/null +++ b/.gitignore @@ -0,0 +1,2 @@ +node_modules/ +package-lock.json diff --git a/HISTORY.md b/HISTORY.md new file mode 100644 index 0000000..64487ca --- /dev/null +++ b/HISTORY.md @@ -0,0 +1,10 @@ +## Legend +- 🐛 - Bug +- ✔ī¸ - Fixed +- ❌ - Removed +- ➕ - Added +- ℹī¸ - Information +- â™ģī¸ - Edited + +## 0.1.0 - [17/04/2021] - (not work) +- diff --git a/LICENSE b/LICENSE index 80ce293..ca1c103 100644 --- a/LICENSE +++ b/LICENSE @@ -1,6 +1,6 @@ MIT License -Copyright (c) 2021 Turn 0 Around +Copyright (c) 2021 Alexander Popov Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/TODO.md b/TODO.md new file mode 100644 index 0000000..a8ed9ee --- /dev/null +++ b/TODO.md @@ -0,0 +1 @@ +- make docs/ diff --git a/docs/.nojekyll b/docs/.nojekyll new file mode 100644 index 0000000..e69de29 diff --git a/docs/README.md b/docs/README.md new file mode 100644 index 0000000..da2056b --- /dev/null +++ b/docs/README.md @@ -0,0 +1,3 @@ +# Headline + +> An awesome project. diff --git a/docs/index.html b/docs/index.html new file mode 100644 index 0000000..04dd4a7 --- /dev/null +++ b/docs/index.html @@ -0,0 +1,22 @@ + + + + + Document + + + + + + +
+ + + + + diff --git a/package.json b/package.json new file mode 100644 index 0000000..815b6ff --- /dev/null +++ b/package.json @@ -0,0 +1,23 @@ +{ + "name": "quizEngine", + "version": "0.0.1", + "description": "", + "main": "index.js", + "scripts": { + "test": "echo \"Error: no test specified\" && exit 1" + }, + "repository": { + "type": "git", + "url": "git+https://github.com/emilecok/quizEngine.git" + }, + "keywords": [], + "author": "", + "license": "MIT", + "bugs": { + "url": "https://github.com/emilecok/quizEngine/issues" + }, + "homepage": "https://github.com/emilecok/quizEngine#readme", + "devDependencies": { + "docsify-cli": "^4.4.3" + } +}