Compare commits

...

5 Commits
www ... master

@ -1,3 +1,68 @@
# basement_website # basement_website
This is the primary website used for www.bdsmhypnosisbasement.com This Git repo is used for both the [cdn sub-domain](https://cdn.bdsmhypnosisbasement.com) and the [www sub-domain](https://www.bdsmhypnosisbasement.com/).
## Roadmap
### Version 1
Version 1 is the set up of the `cdn` sub-domain and all of the required files for the primary website to run.
This includes the following;
- [ ] CSS files
- [ ] ./css/internal-branding.css
- [ ] ./css/external-branding.css
- [ ] ./css/mdb-fluent.css
- [ ] ./css/micon.css
- [ ] IMG files
- [ ] ./img/embeds
- [ ] ./img/embeds/00_basement.png
- [ ] ./img/embeds/01_affiliates.png
- [ ] ./img/embeds/02_lovense.png
- [ ] ./img/embeds/03_patreon.png
- [ ] ./img/embeds/04_partnerships.png
- [ ] ./img/embeds/05_blacklisted-guilds.png
- [ ] ./img/embeds/06_standard-partner-guide.png
- [ ] ./img/embeds/07_trusted-partner-guide.png
- [ ] ./img/embeds/08_standard-partners.png
- [ ] ./img/embeds/09_trusted-partners.png
- [ ] ./img/embeds/10_project-cinnamon.png <!-- Custom Discord Bot -->
- [ ] ./img/embeds/11_project-homestead.png <!-- Education Self-Hosting -->
- [ ] ./img/embeds/12_project-firefly.png <!-- Groupware Self-Hosting -->
- [ ] ./img/embeds/13_project-sandbox.png <!-- Software Development -->
- [ ] ./img/favicon
- [ ] ./img/favicon/favicon.ico
- [ ] ./img/favicon/basic
- [ ] ./img/favicon/basic/16x16.png
- [ ] ./img/favicon/basic/32x32.png
- [ ] ./img/favicon/basic/48x48.png
- [ ] ./img/favicon/android-chrome
- [ ] ./img/favicon/android-chrome/36x36.png
- [ ] ./img/favicon/android-chrome/48x48.png
- [ ] ./img/favicon/android-chrome/72x72.png
- [ ] ./img/favicon/android-chrome/96x96.png
- [ ] ./img/favicon/android-chrome/144x144.png
- [ ] ./img/favicon/android-chrome/192x192.png
- [ ] ./img/favicon/android-chrome/256x256.png
- [ ] ./img/favicon/android-chrome/384x384.png
- [ ] ./img/favicon/android-chrome/512x512.png
- [ ] ./img/favicon/apple-touch-icon
- [ ] ./img/favicon/apple-touch-icon/57x57.png
- [ ] ./img/favicon/apple-touch-icon/60x60.png
- [ ] ./img/favicon/apple-touch-icon/72x72.png
- [ ] ./img/favicon/apple-touch-icon/76x76.png
- [ ] ./img/favicon/apple-touch-icon/114x114.png
- [ ] ./img/favicon/apple-touch-icon/120x120.png
- [ ] ./img/favicon/apple-touch-icon/144x144.png
- [ ] ./img/favicon/apple-touch-icon/152x152.png
- [ ] ./img/favicon/apple-touch-icon/180x180.png
- [ ] ./img/favicon/mstile
- [ ] ./img/favicon/mstile/70x70.png
- [ ] ./img/favicon/mstile/150x150.png
- [ ] ./img/favicon/mstile/310x310.png
- [ ] ./img/favicon/mstile/310x150.png
- [ ] JS files
- [ ] ./js
- [ ] ./js/mdb.min.js
-----

@ -0,0 +1,69 @@
**CDN.BDSMHYPNOSISBASEMENT.COM**
- css
- branding.css
- mdb.min.css
- micon.min.css
- img
- branding
- navbar_logo.png
- favicons
- android-chrome
- 036x036.png
- 048x048.png
- 072x072.png
- 096x096.png
- 144x144.png
- 192x192.png
- 256x256.png
- 384x384.png
- 512x512.png
- apple-touch-icon
- 057x057.png
- 060x060.png
- 072x072.png
- 076x076.png
- 114x114.png
- 120x120.png
- 144x144.png
- 152x152.png
- 180x180.png
- basic
- 016x016.png
- 032x032.png
- 048x048.png
- mstile
- 070x070.png
- 150x150.png
- 150x310.png
- 310x310.png
- favicon.ico
- embeds
- home.png
- js
- mdb.min.js
**WWW.BDSMHYPNOSISBASEMENT.COM**
- affliates
- index.html
- lovense.htm
- patreon.htm
- partners
- index.html
- blacklisted-server.htm
- how-to-standard.htm
- how-to-trusted.htm
- standard-partnerships.htm
- trusted-partnerships.htm
- projects
- index.html
- custom-bot.htm
- e-learning.htm
- groupware.htm
- software-development.htm
- staff
- index.html
- how-to.htm
- meet-our-staff.htm
- terms.htm
- privacy.htm
- index.html

@ -0,0 +1,80 @@
#!/bin/bash
# Setting up bdsmhypnosisbasement.com/loading directory structure
## This section of the script does not need implimentation
# Setting up www.bdsmhypnosisbasement.com directory structure
cd "/var/www/my_webapp__2/www"
mkdir affiliates
mkdir partnerships
mkdir projects
mkdir staff
# Setting Up cdn.bdsmhypnosisbasement.com directory structure
cd "/var/www/my_webapp__3/www"
mkdir css
mkdir branding
mkdir fonts
mkdir img
mkdir img/embeds
mkdir img/favicons
mkdir img/favicons/android-chrome
mkdir img/favicons/apple-touch-icons
mkdir img/favicons/basic
mkdir img/favicons/mstile
mkdir js
# ============================================================ #
reset
wget https://git.bdsmhypnosisbasement.com/mitsuo_makuda/basement_website/raw/branch/www/www/index.html --output-document /var/www/my_webapp__2/www/index.html
# Affiliates
wget https://git.bdsmhypnosisbasement.com/mitsuo_makuda/basement_website/raw/branch/www/www/affiliates/index.html --output-document /var/www/my_webapp__2/www/affiliates/index.html
wget https://git.bdsmhypnosisbasement.com/mitsuo_makuda/basement_website/raw/branch/www/www/affiliates/lovense.htm --output-document /var/www/my_webapp__2/www/affiliates/lovense.htm
wget https://git.bdsmhypnosisbasement.com/mitsuo_makuda/basement_website/raw/branch/www/www/affiliates/patreon.htm --output-document /var/www/my_webapp__2/www/affiliates/patreon.htm
# Partnerships
wget https://git.bdsmhypnosisbasement.com/mitsuo_makuda/basement_website/raw/branch/www/www/partnerships/index.html --output-document /var/www/my_webapp__2/www/partnerships/index.html
wget https://git.bdsmhypnosisbasement.com/mitsuo_makuda/basement_website/raw/branch/www/www/partnerships/blacklisted-guilds.htm --output-document /var/www/my_webapp__2/partnerships/blacklisted-guilds.htm
wget https://git.bdsmhypnosisbasement.com/mitsuo_makuda/basement_website/raw/branch/www/www/partnerships/rejected-guilds.htm --output-document /var/www/my_webapp__2/www/partnerships/rejected-guilds.htm
wget https://git.bdsmhypnosisbasement.com/mitsuo_makuda/basement_website/raw/branch/www/www/partnerships/standard_partner-guide.htm --output-document /var/www/my_webapp__2/www/partnerships/how-to-partnership_standard.htm
wget https://git.bdsmhypnosisbasement.com/mitsuo_makuda/basement_website/raw/branch/www/www/partnerships/trusted_partner-guide.htm --output-document /var/www/my_webapp__2/www/partnerships/how-to-partner_trusted.htm
wget https://git.bdsmhypnosisbasement.com/mitsuo_makuda/basement_website/raw/branch/www/www/partnerships/standard_partnerships.htm --output-document /var/www/my_webapp__2/partnerships/standard_partnerships.htm
wget https://git.bdsmhypnosisbasement.com/mitsuo_makuda/basement_website/raw/branch/www/www/partnerships/trusted_partnerships.htm --output-document /var/www/my_webapp__2/www/partnerships/trusted_partnerships.htm
# Projects
wget https://git.bdsmhypnosisbasement.com/mitsuo_makuda/basement_website/raw/branch/www/www/projects/index.html --output-document /var/www/my_webapp__2/www/projects/index.html
wget https://git.bdsmhypnosisbasement.com/mitsuo_makuda/basement_website/raw/branch/www/www/projects/custom-bot.htm --output-document /var/www/my_webapp__2/www/projects/custom-bot.htm
wget https://git.bdsmhypnosisbasement.com/mitsuo_makuda/basement_website/raw/branch/www/www/projects/e-learning.htm --output-document /var/www/my_webapp__2/www/projects/e-learning.htm
wget https://git.bdsmhypnosisbasement.com/mitsuo_makuda/basement_website/raw/branch/www/www/projects/groupware.htm --output-document /var/www/my_webapp_2/www/projects/groupware.htm
wget https://git.bdsmhypnosisbasement.com/mitsuo_makuda/basement_website/raw/branch/www/www/projects/software-development.htm --output-document /var/www/my_webapp__2/www/projects/software-development.htm
# Staff
wget https://git.bdsmhypnosisbasement.com/mitsuo_makuda/basement_website/raw/branch/www/www/staff/index.html --output-document /var/www/my_webapp__2/www/staff/index.html
wget https://git.bdsmhypnosisbasement.com/mitsuo_makuda/basement_website/raw/branch/www/www/staff/how-to-become-staff.htm --output-document /var/www/my_webapp__2/www/staff/how-to-become-staff.htm
wget https://git.bdsmhypnosisbasement.com/mitsuo_makuda/basement_website/raw/branch/www/www/staff/meet-our-staff.htm --output-document /var/www/my_webapp__2/www/staff/meet-our-staff.htm
wget https://git.bdsmhypnosisbasement.com/mitsuo_makuda/basement_website/raw/branch/www/www/staff/privacy.htm --output-document /var/www/my_webapp__2/www/staff/privacy.htm
wget https://git.bdsmhypnosisbasement.com/mitsuo_makuda/basement_website/raw/branch/www/www/staff/terms.htm --output-document /var/www/my_webapp__2/www/staff/terms.htm
# Change Ownership
chown --recursive --verbose my_webapp__2:www-data /var/www/my_webapp__2/www/*
# Change Permissions
chmod --recursive --verbose 750 /var/www/my_webapp__2/www/*
## ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- ##
reset
# ============================================================ #
# css
wget https://git.bdsmhypnosisbasement.com/mitsuo_makuda/basement_website/raw/branch/cdn/cdn/css/branding.css --output-document /var/www/my_webapp__3/www/css/branding.css
wget https://git.bdsmhypnosisbasement.com/mitsuo_makuda/basement_website/raw/branch/cdn/cdn/css/mdb.min.css --output-document /var/www/my_webapp__3/www/css/mdb.min.css
wget https://git.bdsmhypnosisbasement.com/mitsuo_makuda/basement_website/raw/branch/cdn/cdn/css/micon.min.css --output-document /var/www/my_webapp__3/www/css/micon.min.css
Loading…
Cancel
Save