TweetCommune is a site for submitting tweets to a crowdsourced Twitter account.
Make sure Python is installed on your machine.
apt-get install python3Now clone the repository to your local machine. In the root of the repository, install requirements by running:
pip install -r requirements.txtIf you're having issues creating a Postgres database try copying the original SQLite configuration.
Make the necessary database migrations by running:
python3 manage.py migrateTo run a local version of the site, run the following:
python3 manage.py runserverTo create a build, run the following:
python3 setup.py bdist_wheelThis command will create a distribution in the dist/ directory.