Skip to content

centaurustech/socialtocrowd

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

SocialToCrowd

SocialToCrowd is a web application to request to the comunity for help to make a project, but instead of asking for money you can ask for material donations or work to do.

How to run it:

  1. Create a new virtualenv: mkvirtualenv -p /usr/bin/python2 socialtocrowd
  2. Install requirements: pip install -r requirements.txt
  3. Create the database:
    • install postgresql and postgis
    • Create a postgis database:
      • $ sudo su - postgres
      • $ createuser -P stc
      • $ createdb -O stc stc
      • $ psql stc
        • CREATE EXTENSION postgis;
        • CREATE EXTENSION postgis_topology;
    • python manage.py migrate
  4. Run the application: python manage.py runserver

Troubleshooting

Error: When I make ./manage.py migrate get the error: "UnicodeDecodeError: 'ascii' codec can't decode byte 0xc3"

Solution: Execute: ./manage migrate project && ./manage.py migrate main && ./manage.py migrate

About

Crowdfunding Things

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • HTML 55.9%
  • CSS 15.9%
  • PHP 12.3%
  • Python 11.0%
  • JavaScript 4.9%