Skip to content

Latest commit

 

History

History
108 lines (80 loc) · 2.64 KB

README.md

File metadata and controls

108 lines (80 loc) · 2.64 KB

Logo

Image duplication made easy.

REST API · Swagger

Table of Contents

About The Project

Tired of uploading pictures to your social media, but also need them on your personal websites? This is an API that extracts thumbnail URLs of shots made by a user on different media platforms. This enables the user to display their creative pieces in different locations while only posting on one.

Built With

Usage

Currently accessible at: https://socialmedia-image-scapel.vercel.app/

Use it to display imagines on your website. This keeps you from re-uploading imagines into different locations - just post them in your social media and get the image links.

Getting Started

To get a local copy up and running, follow the below steps.

Prerequisites

You will need Python to be able to run the code.

Installation

Clone the repo:

git clone https://github.com/winnllam/socialmedia-image-scapel.git

Clone the repository and create your virtual environment:

python -m venv venv/

Running the App

Activate the virtual environment:

source venv/scripts/activate

Run the code on localhost (port 5000):

cd venv
flask run

Deactivate the virtual environment:

deactivate

Deployment

Use vercel in the terminal to set up the initial deployment. You will need to install vercel:

npm i -g vercel

For each deployment after, use:

vercel --prod

Sources