Skip to content

DavidGayou/consultation_crowsourcing

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

18 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

consultation_crowsourcing

Crowdsource answer to copyright consultation

  • Easy test the public dir as webserver
    cd public
    python -m SimpleHTTPServer 8989
  • Install and initiate the instance
  • install prerequisite (on debian/ubuntu)
    sudo apt-get install python-virtualenv libmysqlclient-dev
    sudo apt-get install mysql-server
  • create a virtualenv
    cd install
    virtualenv env
    source env/bin/activate
    pip install -r requirements.txt
  • Creation of mysql user Here the password would be 'tester', please change it
    mysql -uroot -p
    mysql> create database crowdsourcingdb; 
    mysql> grant usage on *.* to cs_user@localhost identified by 'tester';
    mysql> grant all privileges on crowdsourcingdb.* to cs_user@localhost ;
    mysql> exit;
  • Set the config file Copy the template config file and edit it for mysql access
    cp config.py.template config.py
    nano config.py

About

Crowdsource answer to copyright consultation

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published