Skip to content

muhammadabir64/meme-generator-frontend

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Meme-Generator - Frontend

image

The Meme Generator app, powered by React, Flask, and Firebase Authentication, offers users a simple yet powerful meme creation experience. Search for images with Pixabay, then customize memes in a Canva-like editor. Adjust text, colors, and positions, add backgrounds, padding, and overlay effects. Secure logins with Firebase Authentication. Create, save, and export personalized memes effortlessly. Turn ordinary images into shareable, hilarious memes with ease!

  • Requirements:
    • NodeJS v20.x

how to setup?

  1. Clone Repository:
https://github.com/muhammadabir64/meme-generator-frontend
  1. Install Dependencies:
npm install
  1. Set the backend URL variable in src/env.js:
//frontend/src/env.js
const SERVER_URI = "http://localhost:8000";

module.exports = {
    SERVER_URI
}
  1. Set firebase configs src/config.js
const firebaseConfig = {
    apiKey: "",
    authDomain: "",
    projectId: "",
    storageBucket: "",
    messagingSenderId: "",
    appId: ""
};
  1. Start the server:
npm start