added humans.txt & moved files

This commit is contained in:
Alexander Popov 2023-08-06 05:49:17 +03:00
parent c2c37e4d6a
commit fbd62e9a03
10 changed files with 24 additions and 7 deletions

1
.gitignore vendored
View File

@ -3,3 +3,4 @@
ec*.exe ec*.exe
public/ public/
content/ content/
app/bootstrap*

View File

@ -1,7 +1,8 @@
public/ public/
static/
app/assets/css/bootstrap* app/assets/css/bootstrap*
app/assets/js/bootstrap* app/assets/js/bootstrap*
package.json package.json
package-lock.json package-lock.json
server/ server/
README.md *.md

View File

@ -1,7 +1,7 @@
## Используемые технологии ## Используемые технологии
- **Языки:** **JavaScript** для фрота, **Crystal** для бэка и **Bash** для скриптов. - **Языки:** **JavaScript** для фрота, **Crystal** для бэка и **Bash** для скриптов.
- **Инструменты:** Parcel, Prettier, EditorConfig, _Tokei_ (_comming soon_) - **Инструменты:** Parcel, Prettier, EditorConfig
## Сборка ## Сборка

View File

@ -1 +0,0 @@
bootstrap*.min.*

15
app/humans.txt Normal file
View File

@ -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

View File

@ -6,11 +6,12 @@
<title>a2s</title> <title>a2s</title>
<meta name="description" content="" /> <meta name="description" content="" />
<link rel="manifest" href="manifest.json" /> <link rel="manifest" href="manifest.json" />
<link rel="stylesheet" type="text/css" href="./assets/css/bootstrap-v5.3.1.min.css" /> <link rel="stylesheet" type="text/css" href="bootstrap-v5.3.1.min.css" />
<link rel="stylesheet" type="text/css" href="./assets/css/styles.css" /> <link rel="stylesheet" type="text/css" href="styles.css" />
<script type="module"> <script type="module">
import './assets/js/app.js'; import './app.js';
</script> </script>
<link rel="author" href="humans.txt" />
<link rel="icon" type="image/png" href="favicon.png" /> <link rel="icon" type="image/png" href="favicon.png" />
</head> </head>
<body class="d-flex h-100 text-bg-dark"> <body class="d-flex h-100 text-bg-dark">

View File

@ -4,7 +4,7 @@
"version": "1.0.0", "version": "1.0.0",
"description": "ololo", "description": "ololo",
"scripts": { "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/*/*/*", "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": "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", "build-app": "npx parcel build --no-cache --no-source-maps --no-optimize --no-content-hash --dist-dir public app/index.html",