Meme Game
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 ishttp://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