https://github.com/stuartmcgill/ctdd
https://github.com/stuartmcgill/ctdd
church cms didcot laravel oxfordshire php twill
Last synced: 4 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/stuartmcgill/ctdd
- Owner: stuartmcgill
- Created: 2025-06-03T20:38:58.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2025-09-07T12:52:53.000Z (9 months ago)
- Last Synced: 2025-09-07T14:40:43.077Z (9 months ago)
- Topics: church, cms, didcot, laravel, oxfordshire, php, twill
- Language: PHP
- Homepage:
- Size: 2.11 MB
- Stars: 1
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Development
## Start the environment
Start the database:
```bash
sail up -d
```
Serve the site:
```bash
php artisan serve
```
```bash
npm run dev
```
## Setup
```bash
php artisan storage:link
```
The admin user for the site is a01@ctdd.uk.
# Production
## First-time setup
```bash
php artisan storage:link
```
## Update to a new version
```shell
git fetch
## Checkout to the appropriate tag
git checkout v.1.3.0
## PHP updates
composer install --no-dev
php artisan migrate
## JS updates
npm ci
npm run build
npm install --omit-dev
```