senseofsteph / SocialSesh

Full-stack web app where users can connect and create through online virtual events.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

SocialSesh

Overview

A full-stack web app where users can connect, create, and contribute, through online virtual events

Click to view demo video

Technologies and Stack

Backend: Python, Flask, SQLAlchemy, PostgreSQL
Frontend: HTML5, CSS3, JavaScript, Bootstrap
APIs: Twilio and FullCalendar

MVP Features

  • User can browse all virtual events
  • User can register to attend a virtual event
  • User receives an event confirmation text message

Set-up & Installation

Install a code editor such as VS code or Sublime Text
Install Python3
Install pip, the package installer for Python
Install postgreSQL for the relational database
Make an account to receive Twilio SMS API key and token
Visit FullCalendar to obtain the necessary JavaScript code

Clone or fork this repository

  • Create and activate a virtual environment:
git clone https://github.com/senseofsteph/SocialSesh
  • Install dependencies:
pip3 install virtualenv
virtualenv env
source env/bin/activate
pip3 install -r requirements.txt
  • Store the API key and token in 'secrets.sh' file
source secrets.sh
  • With PostgreSQL, create the SocialSesh database:
createdb socialsesh
  • Create all table and relations in the database and seed all data:
python3 seed.py
  • Run the app from the command line:
python3 server.py

Future features

  • User profile customization
  • Ability to create and save events
  • Chat rooms to discuss common interests in events
  • Software deployment

Connect with the developer

About

Full-stack web app where users can connect and create through online virtual events.


Languages

Language:Python 46.4%Language:HTML 38.0%Language:CSS 13.3%Language:JavaScript 2.3%