Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/zhouzhuojie/lcdaily

Send random leetcode email every day
https://github.com/zhouzhuojie/lcdaily

golang leetcode

Last synced: 22 days ago
JSON representation

Send random leetcode email every day

Awesome Lists containing this project

README

        

# lcdaily
Leetcode Daily - Sends yourself a random leetcode email every day.

# Preview



# Get started
```bash
# Here we use some env variables to configure the lcdaily

# your gmail account
# [email protected]
# userPassword=123456

# your server host information for setting up the "send another random question" url
# serverHost=10.10.10.10 or serverHost=sub.mydomain.com
# serverPort=8080

docker run -p 8080:8080 \
-e "[email protected]" -e "userPassword=123456" \
-e "serverHost=localhost" -e "serverPort=8080" \
-d zhouzhuojie/lcdaily
```