Skip to content
This repository has been archived by the owner on Oct 26, 2024. It is now read-only.

👾 twitter-like (anti-) social network in flask

Notifications You must be signed in to change notification settings

autistic-symposium/antisocial-py

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

50 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

the anti-social network




running


  • install the dependencies in a venv:
pip install -r requirements/*
  • import environment variables for user authentications (this can also be added to your .bash):
export MAIL_USERNAME=<Gmail username>
export MAIL_PASSWORD=<Gmail password>
export ANTISOCIAL_ADMIN=<your-email-address>
export SECRET_KEY=<choose-a-secrecy>
  • upgrade your DB:
python manage.py db migrate
python manage.py db upgrade
  • run:
python manage.py runserver