Skip to content

Commit 0169c3b

Browse files
author
Chris Maunder
committed
Updated install script comments
1 parent 515ef0c commit 0169c3b

File tree

2 files changed

+25
-0
lines changed

2 files changed

+25
-0
lines changed

install.bat

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
:: Installation script :::::::::::::::::::::::::::::::::::::::::::::::::::::::::
2+
::
3+
:: Text2Image
4+
::
5+
:: This script is only called from ..\..\CodeProject.AI-Server\src\setup.bat in
6+
:: Dev setup, or ..\..\src\setup.bat in production
7+
::
8+
:: For help with install scripts, notes on variables and methods available, tips,
9+
:: and explanations, see /src/modules/install_script_help.md
10+
111
@if "%1" NEQ "install" (
212
echo This script is only called from ..\..\CodeProject.AI-Server\src\setup.bat
313
@pause

install.sh

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,18 @@
1+
#!/bin/bash
2+
3+
# Development mode setup script ::::::::::::::::::::::::::::::::::::::::::::::
4+
#
5+
# Text2Image
6+
#
7+
# This script is called from the SuperResolution directory using:
8+
#
9+
# bash ../../CodeProject.AI-Server/src/setup.sh
10+
#
11+
# The setup.sh script will find this install.sh file and execute it.
12+
#
13+
# For help with install scripts, notes on variables and methods available, tips,
14+
# and explanations, see /src/modules/install_script_help.md
15+
116
if [ "$1" != "install" ]; then
217
read -t 3 -p "This script is only called from: bash ../../CodeProject.AI-Server/src/setup.sh"
318
echo

0 commit comments

Comments
 (0)