Ver código fonte

Fix up the bits in the deployment script for entering dbname, etc.

master
duncan.parkes 15 anos atrás
pai
commit
7832716488
2 arquivos alterados com 10 adições e 4 exclusões
  1. +3
    -3
      deployment_script_common
  2. +7
    -1
      generateCGIScripts.py

+ 3
- 3
deployment_script_common Ver arquivo

@@ -39,13 +39,13 @@ echo
echo "Enter mysql db name:"
read MYSQL_DB_NAME
echo $MYSQL_DB_NAME
export $MYSQL_DB_NAME
export MYSQL_DB_NAME
echo "Enter mysql username:"
read MYSQL_USERNAME
export $MYSQL_USERNAME
export MYSQL_USERNAME
echo "Enter mysql password:"
read MYSQL_PASSWORD
export $MYSQL_PASSWORD
export MYSQL_PASSWORD

echo "Generating python scrapers"
# Generate the python cgi files


+ 7
- 1
generateCGIScripts.py Ver arquivo

@@ -48,7 +48,13 @@ csv_reader = csv.DictReader(
template= open(template_filename).read()

# Get a mysql cursor
mysql_connection = MySQLdb.connect(db="planning")
import pdb;pdb.set_trace()

mysql_connection = MySQLdb.connect(
db=environ['MYSQL_DB_NAME'],
user=environ['MYSQL_USERNAME'],
passwd=environ['MYSQL_PASSWORD'],
)
mysql_cursor = mysql_connection.cursor()

python_scraper_location = "/cgi-bin/%s.cgi?day={day}&month={month}&year={year}"


Carregando…
Cancelar
Salvar