/meme-game

A simple game in which you should caption a gif

Primary LanguageJavaScriptMIT LicenseMIT

Meme Game

Docker Hub Client

Docker Hub Server

Build Status

The goal of the game is to caption a gif to create a meme and then vote the best one.

Build

To build all apps, run the following command:

yarn run build

Develop

To develop all apps, run the following command:

yarn run dev

Environment Variables

You should create a .env.local file for each app inside apps. The content of the file for each app is:

  • client
    • NEXT_PUBLIC_SERVER_URL → the url of server app (if you are on local machine is http://localhost:3001 )
  • server
    • GIPHY_API_KEY: a developer key of your Giphy app

Docker

To start the app with Docker create a file called .env.server.local with the content of the server app .env.local and just run:

docker-compose up # or "docker compose up" if you are using v2