https://github.com/chriscarini/clock.chriscarini.com
https://github.com/chriscarini/clock.chriscarini.com
website
Last synced: 6 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/chriscarini/clock.chriscarini.com
- Owner: ChrisCarini
- Created: 2022-03-07T00:52:21.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2022-05-06T04:49:12.000Z (over 3 years ago)
- Last Synced: 2024-10-18T07:39:03.248Z (12 months ago)
- Topics: website
- Language: JavaScript
- Homepage:
- Size: 34.2 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# `clock.chriscarini.com`
This repository is the backing to [clock.chriscarini.com](https://clock.chriscarini.com).
### Development Notes
#### git Submodules
This repository makes use of git submodules. Specifically, we
use [simple-php-git-deploy](https://github.com/markomarkovic/simple-php-git-deploy)
to automatically deploy changes to this repository to our host.When cloning this directory, run the below command to automatically initialize and update the submodules:
```bash
git clone --recurse-submodules git@github.com:ChrisCarini/clock.chriscarini.com.git
```You will have to create the `deploy-config.php` file and set the properties accordingly.
```bash
cp deploy-hooks/deploy-config.example.php deploy-hooks/deploy-config.php
vi deploy-hooks/deploy-config.php
```(**Note:** We explicitly exclude this file from SCM, so you will have to SCP it over to the host.)
See [git-scm.com - 7.11 Git Tools - Submodules](https://git-scm.com/book/en/v2/Git-Tools-Submodules) for a good primer
on git submodules.