Temporary location of Voting Software Source code.
Find a file
2013-12-18 17:09:04 -05:00
bin Releasing the bin/ scripts under GPLv3+ 2013-12-18 15:44:26 -05:00
include Here too. 2013-07-25 11:32:35 +02:00
vote Properly format schema.sql for MySQL & drop tables first. 2013-12-18 15:38:02 -05:00
.cvsignore Merge the new-template branch in to HEAD. The branch is now defunct, and 2003-11-02 05:06:55 +00:00
.gitignore Add .gitignore 2009-05-17 16:39:21 +02:00
autogen.sh Remove references to things other than the vote stuff in configure scripts. 2013-12-17 13:19:12 -05:00
configure.in No longer reference removed directories. 2013-12-18 13:14:03 -05:00
MAINTAINERS I'm the maintainer of this fork of the GNOME voting stuff. 2013-12-17 13:15:57 -05:00
Makefile.am Remove references to things other than the vote stuff in configure scripts. 2013-12-17 13:19:12 -05:00
README Note format of file. 2013-12-18 17:09:04 -05:00
rules.common go back to evilsedhack for php files, since PHP is evil. Should fix this 2005-05-23 07:17:00 +00:00

Setting up an election:

0. vote/include/election-sql.php expects a secret config file that exists
   only on the server and is included as PHP code.  It's hard coded currently
   to: /home/admin/secret/anonvoting currently.

   The file should look something like this:

<?php
       $mysql_host = "localhost";
       $mysql_user = "someuser";
       $mysql_password = "somepassword";
       $mysql_db = "somedb";
?>

1. When I deploy, I create an account for the election, as the mysql root user:
   mysql -u root -p
   Password: <MYSQLROOTPW>
   mysql> CREATE USER 'someusername' identified by 'somepassword';
   mysql> CREATE DATABASE somedbname;
   mysql> quit
   msyql -u root -p -D somedbname < ..../vote/include/schema.sql