Skip to content

Commit

Permalink
added content and readme
Browse files Browse the repository at this point in the history
  • Loading branch information
mourique committed Dec 11, 2023
1 parent e0fd138 commit d3afc06
Show file tree
Hide file tree
Showing 4 changed files with 65 additions and 3 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ What is added:
- sticky footer css
- webfont css
- tachyons preloader
- conditional BASIC AUTH and https://www

## Create a new Project ➕

Expand Down
6 changes: 5 additions & 1 deletion content/error/error.txt
Original file line number Diff line number Diff line change
@@ -1 +1,5 @@
Title: Error
Title: Error

----

Uuid: pYmgvVdUCXfAnAm4
59 changes: 58 additions & 1 deletion content/home/home.txt
Original file line number Diff line number Diff line change
@@ -1 +1,58 @@
Title: Home
Title: Home

----

Text:

# 🔥 Firekit for KirbyCMS

This is my boilerplate for KirbyCMS based on plainkit with everything i need for creating websites. You can learn more about Kirby at getkirby.com.

What is added:

/assets folder with scripts.js and styles.css
/partials for header and footer
HTML Skeleton
sticky footer css
webfont css
tachyons preloader

## Create a new Project ➕

composer create-project mourique/firekit PROJECTNAME

## Deployments 🔼

uses git-ftp
use plain ftp with git ftp push -P
this prompts for a password everytime
or use with SSH keys setup (RSA, no ED!!)
❗️this currently does not do composer install on livehost
setup in .git/config

## git-ftp configuration

[git-ftp]
user = USERNAME
# for sftp/ssh (with keys)
url = sftp://HOST:22/~/public_html/DOMAINNAME
# for ftp (with passwort prompt)
url = ftp://HOST:21/public_html/DOMAINNAME

## Content Backups 🔒

uses cronjobs
duplicates the /content folder every night and keeps the last 10 copies
setup in /content_backup/content_backups.sh
activate on livehost

## Pull Content To Local ⏬

uses rsync
setup in composer.json
run composer run-scripts pull-content
or dry-pull-content

----

Uuid: ILZNs5GrWRT4XZKd
2 changes: 1 addition & 1 deletion site/templates/default.php
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?= snippet('partials/header') ?>

<main>
<h1>Main: <?= $page->title() ?></h1>
<?= $page->text()->kt() ?>
</main>

<?= snippet('partials/footer') ?>

0 comments on commit d3afc06

Please sign in to comment.