Compare commits

..

No commits in common. "6af0095470fd86eb85c7cccc6ecdd1bfb66a035a" and "4a8171881856d610af91bd9fc1185ba540d656a9" have entirely different histories.

2 changed files with 9 additions and 6 deletions

View File

@ -4,9 +4,7 @@ A program to take notes during a sermon. The web app was built with PHP and Sym
## Installation
1. Run `docker run -d --name sermon-notes -p 80:80 ryanprather/sermon-notes:latest`, this will download and start the container and keep it running in the background. If you already have something on port 80 change the first `80` to whatever open port you'd like.
2. Run `docker exec -it sermon-notes bash install.sh` This will run an install script to create an .env file specific to your install, populate with the beginning factors, and then run a `composer` command to download the necessary package dependancies.
3. Once complete you have a running system that you can navigate to in your browser with `http://{ip}:{port}|{hostname}:{port}`. Then you just need to register for an account. The first account that is created is made an admin so that you can access the `Reference Editor` and update any reference material if necessary.
The best option for installing is using the Docker container. Download the `docker-compose.yml` file from this repository and run `docker-compose up -d` from the command line.
## Operation
@ -26,7 +24,7 @@ Once you get logged in you'll be presented with the main home page
![HomePage](/assets/images/HomePage.png)
If you are accessing on a regular iPad the menu should be collapsed, if not, you may need to do that. I built this with a iPad 9th Gen in mind so visibility on another device may vary.
If you are accessing on a regular iPad the menu should be collapsed, if not, you may need to do that. I built this with a iPad 9th Gen in mind so your mileage may vary.
![Header](/assets/images/Header.png)
@ -64,5 +62,5 @@ or if the note was recently made you will see the most recent 4 notes listed und
![RecentNotes](/assets/images/RecentNotes.png)
By clicking either of the title links it will open the note and display it for you to edit or read. I can add "Notes" as future reference content.
By click either of the title links it will open the note and display it for you to edit or read. I can add "Notes" as future reference content.

View File

@ -4,5 +4,10 @@ services:
sermon-notes:
container_name: sermon-notes
image: ryanprather/sermon-notes:latest
command:
- "php bin/console doctrine:migrations:migrate --no-interaction"
- "bash install.sh"
ports:
- 80:80
- 80:80
volumes:
- .:/var/www/html