Giter Site home page Giter Site logo

gabrielkheisa / meme-generator-nodejs Goto Github PK

View Code? Open in Web Editor NEW
1.0 1.0 0.0 1.11 MB

This repository contains a previous LEMP stack meme generator, rewritten on Node.js along with necessary steps to set up and run the app.

Home Page: http://meme-nodejs.gabrielkheisa.xyz/

HTML 8.72% EJS 7.45% JavaScript 59.38% Python 24.45%
ffmpeg lemp-stack mariadb meme-generator moviepy nodejs python

meme-generator-nodejs's Introduction

Meme generator rewritten on Node.js

This repository contains a previous LEMP stack meme generator, rewritten on Node.js along with necessary steps to set up and run the app.

Getting Started

1. Explore docker-compose.yml

Take a look at the docker-compose.yml file to understand the services and configurations defined for Docker or create a Docker external network "meme-generator-net" or create a docker-compose.yml file and copy this configuration:

# ./docker-compose.yml
version: '3'

networks:
  meme-generator-net:
    external: true
    name: "meme-generator-net"

services:
  app:
    image: adhocore/lemp:8.1
    # For different app you can use different names. (eg: )
    container_name: memegenerator
    volumes:
      # app source code
      - ./meme-generator-nodejs:/var/www/html
      # db data persistence
      # Here you can also volume php ini settings
      # - /path/to/zz-overrides:/usr/local/etc/php/conf.d/zz-overrides.ini
    ports:
      - 3000:3000
    environment:
      MYSQL_ROOT_PASSWORD: supersecurepwd
      MYSQL_DATABASE: appdb
      MYSQL_USER: dbusr
      MYSQL_PASSWORD: securepwd
      # for postgres you can pass in similar env as for mysql but with PGSQL_ prefix
    networks:
      - "meme-generator-net"
    restart: always

volumes:
  db_data: {}

2. Run the Docker container

Run the container using Docker Compose:

docker-compose up -d

3. Clone the Repository

Clone this repository to your local machine:

git clone https://repo.gabrielkheisa.xyz/gabrielkheisa/meme-generator-nodejs.git
cd meme-generator-nodejs

4. Bash into the Container

Access the container's terminal/bash, look for it using "docker ps":

docker exec -it <container_name> bash

Update the repository:

apk update

5. Backup SQL table structure

Backup the file table_structure_ronaldo.sql from the repository or via terminal by logging into MySQL

mysql -u root -p

with the password supersecurepwd . Then, select database appdb

use appdb;

and backup the table structure

-- phpMyAdmin SQL Dump
-- version 5.2.1
-- https://www.phpmyadmin.net/
--
-- Host: app:3306
-- Generation Time: Nov 27, 2023 at 10:35 AM
-- Server version: 10.6.14-MariaDB
-- PHP Version: 8.2.8

SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";
START TRANSACTION;
SET time_zone = "+00:00";


/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8mb4 */;

--
-- Database: `appdb`
--

-- --------------------------------------------------------

--
-- Table structure for table `meme_ronaldo`
--

CREATE TABLE `meme_ronaldo` (
  `id` int(11) NOT NULL,
  `text` varchar(120) NOT NULL,
  `value` varchar(9) NOT NULL,
  `status` varchar(1) NOT NULL DEFAULT '0',
  `timestamp` timestamp NOT NULL DEFAULT current_timestamp()
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;

--
-- Indexes for dumped tables
--

--
-- Indexes for table `meme_ronaldo`
--
ALTER TABLE `meme_ronaldo`
  ADD PRIMARY KEY (`id`);

--
-- AUTO_INCREMENT for dumped tables
--

--
-- AUTO_INCREMENT for table `meme_ronaldo`
--
ALTER TABLE `meme_ronaldo`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT;
COMMIT;

/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;

6. Install Python, video renderer, NPM, and all of the requirements

For video renderer purposes:

apk add --no-cache python3 py3-pip
apk add make automake gcc g++ subversion python3-dev
apk add ffmpeg
pip3 install --upgrade pip
pip3 install mysql-connector-python==8.0.29
pip3 install python-dotenv
apk add npm

7. Install Node.js Development or Production Tools

In this case, for development only, use nodemon, else use pm2:

npm install -g nodemon

8. Configure .env File

Create a .env file in the root directory and add necessary configurations:

DB_HOST=localhost
DB_USER=dbusr
DB_PASSWORD=securepwd
DB_NAME=appdb
PORT=3000

9. Start the Node.js App

Run the application using npm, in a detached session using Linux screen:

apk add screen

Create a screen session for npm:

screen

Install dependencis:

npm install

Run the application using npm:

npm start

Detach from the screen, using CTRL + A then CTRL + D

10. Run the Python video renderer script

Create a screen session for Python video renderer:

screen

Execute the Python video renderer script:

cd videos
python render.py

Detach from the screen, using CTRL + A then CTRL + D

11. Access the Server Endpoint

Navigate to http://localhost:3000 or the configured endpoint in your browser to access the server.

Additional Notes:

  • Modify configurations in docker-compose.yml for custom setups.
  • Ensure proper permissions and access rights when running docker commands.

meme-generator-nodejs's People

Contributors

gabrielkheisa avatar arduinocraft avatar

Stargazers

alston argodi avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.