Initial Commit

This commit is contained in:
Zi Xing 2022-01-27 12:46:15 -05:00
commit 1d973757b5
8 changed files with 123 additions and 0 deletions

3
frontend/.htaccess Normal file
View File

@ -0,0 +1,3 @@
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule . index.php [L]

6
frontend/index.php Normal file
View File

@ -0,0 +1,6 @@
<?php
require('ppm');
import('net.intellivoid.dynamical_web');
\DynamicalWeb\DynamicalWeb::exec('net.intellivoid.intellivoid_website==latest');

10
make_assets/build.php Normal file
View File

@ -0,0 +1,10 @@
<html>
<head>
<title>Compiling Project</title>
<meta http-equiv="refresh" content="1"/>
</head>
<body>
<h1>Compiling Project</h1>
<p>The page will refresh automatically when done</p>
</body>
</html>

6
make_assets/live.php Normal file
View File

@ -0,0 +1,6 @@
<?php
require('ppm');
import('net.intellivoid.dynamical_web');
\DynamicalWeb\DynamicalWeb::exec('net.intellivoid.intellivoid_website==latest');

31
src/configuration.json Normal file
View File

@ -0,0 +1,31 @@
{
"name": "Intellivoid Services",
"version": "1.0.0.0",
"author": "Zi Xing Narrakas",
"organization": "Intellivoid Technologies",
"configuration": {
"root_path": "/",
"localization": {
"enabled": false,
"primary_localization": "en",
"auto_detect_preference": true,
"localizations": {}
},
"favicon": null,
"localization_enabled": true,
"debugging_mode": false,
"framework_signature": true,
"application_signature": true,
"security_headers": true,
"enable_khm": true,
"firewall_deny": [],
"headers": {}
},
"runtime_scripts": [],
"web_assets": [
{"type": "ppm", "name": "primary_assets", "source": "net.intellivoid.dore_template==latest", "path": "assets"}
],
"router": [
{"method": ["GET"], "path": "", "page": "index", "params": []},
]
}

8
src/languages/en.json Normal file
View File

@ -0,0 +1,8 @@
{
"language": {
"name": "english",
"iso_639-1": "en"
},
"pages": {},
"sections": {}
}

59
src/package.json Normal file
View File

@ -0,0 +1,59 @@
{
"package": {
"package_name": "net.intellivoid.intellivoid_website",
"name": "Intellivoid Website",
"version": "3.0.0.0",
"author": "Zi Xing Narrakas",
"organization": "Intellivoid Technologies",
"description": "The main website for Intellivoid",
"url": "https://github.com/intellivoid/Intellivoid-Website",
"dependencies": [
{
"package": "net.intellivoid.dynamical_web",
"version": "latest",
"source": "default@github/intellivoid/DynamicalWeb",
"required": true
},
{
"package": "net.intellivoid.website_template",
"version": "latest",
"source": "default@github/intellivoid/Intellivoid-Website-Template",
"required": true
}
],
"configuration": {
"autoload_method": "generated_spl",
"main": null,
"post_installation": [],
"pre_installation": []
}
},
"components": [],
"files": [
"markdown/tos/es.md",
"markdown/tos/en.md",
"markdown/dev_dav/en.md",
"markdown/privacy/es.md",
"markdown/privacy/en.md",
"markdown/example/es.md",
"markdown/example/zh.md",
"markdown/example/en.md",
"markdown/dev_antiengineer/en.md",
"markdown/dev_netkas/en.md",
"sections/footer.dyn",
"sections/header.dyn",
"sections/navigation.dyn",
"sections/navigation_dark.dyn",
"sections/js_scripts.dyn",
"sections/navigation_light.dyn",
"package.json",
"languages/en.json",
"javascript/main.js.dyn",
"pages/team/team_members.json",
"pages/team/contents.dyn",
"pages/index/contents.dyn",
"pages/about/contents.dyn",
"runtime_scripts/maintenance.dyn",
"configuration.json"
]
}

View File