diff --git a/.gitignore b/.gitignore index d7eee80..fd8297e 100644 --- a/.gitignore +++ b/.gitignore @@ -3,3 +3,4 @@ ec*.exe public/ content/ +app/bootstrap* diff --git a/.prettierignore b/.prettierignore index eef0fe3..a6bfe87 100644 --- a/.prettierignore +++ b/.prettierignore @@ -1,7 +1,8 @@ public/ +static/ app/assets/css/bootstrap* app/assets/js/bootstrap* package.json package-lock.json server/ -README.md +*.md diff --git a/README.md b/README.md index d4e1c9d..0483fe9 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@ ## Используемые технологии - **Языки:** **JavaScript** для фрота, **Crystal** для бэка и **Bash** для скриптов. -- **Инструменты:** Parcel, Prettier, EditorConfig, _Tokei_ (_comming soon_) +- **Инструменты:** Parcel, Prettier, EditorConfig ## Сборка diff --git a/app/assets/js/app.js b/app/app.js similarity index 100% rename from app/assets/js/app.js rename to app/app.js diff --git a/app/assets/.gitignore b/app/assets/.gitignore deleted file mode 100644 index cefc8f9..0000000 --- a/app/assets/.gitignore +++ /dev/null @@ -1 +0,0 @@ -bootstrap*.min.* diff --git a/app/humans.txt b/app/humans.txt new file mode 100644 index 0000000..bc7a7e9 --- /dev/null +++ b/app/humans.txt @@ -0,0 +1,15 @@ +/* SITE */ +Last update: Sun Aug 06 04:57 AM MSK 2023 +Language: Russian +Doctype: HTML5 +IDE: Sublime Text 4 +Tools: Parcel, Prettier, EditorConfig +Components: Bootstrap 5.3.1 +Server: 1Gb RAM 1CPU KVM by FirstVDS +Server OS: ArchLinux rolling + +/* TEAM */ +Chef: Alexander Popov +Contacts: iiiypuk [at] fastmail.fm +Ko-Fi: iiiypuk +Location: Murmansk, Russia diff --git a/app/index.html b/app/index.html index 46490c4..bc36695 100644 --- a/app/index.html +++ b/app/index.html @@ -6,11 +6,12 @@ a2s - - + + + diff --git a/app/assets/js/routes.js b/app/routes.js similarity index 100% rename from app/assets/js/routes.js rename to app/routes.js diff --git a/app/assets/css/styles.css b/app/styles.css similarity index 100% rename from app/assets/css/styles.css rename to app/styles.css diff --git a/package.json b/package.json index cb293dc..afaa5b9 100644 --- a/package.json +++ b/package.json @@ -4,7 +4,7 @@ "version": "1.0.0", "description": "ololo", "scripts": { - "serve": "npx parcel serve --dist-dir .parcel-app app/index.html pages/*.html content/*/*/*", + "serve": "npx parcel serve --dist-dir .parcel-app app/index.html icons/*.png pages/*.html content/*/*/*", "serve-https": "npx parcel serve --https --dist-dir public app/index.html pages/*.html content/*/*/*", "build": "npm run clean; npm run build-pages; npm run build-app; npm run git-hash", "build-app": "npx parcel build --no-cache --no-source-maps --no-optimize --no-content-hash --dist-dir public app/index.html",