Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/zhouzhuojie/lcdaily
- Owner: zhouzhuojie
- Created: 2017-04-09T04:20:30.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2018-10-25T06:37:24.000Z (over 6 years ago)
- Last Synced: 2024-11-19T19:06:13.633Z (3 months ago)
- Topics: golang, leetcode
- Language: HTML
- Size: 126 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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=8080docker run -p 8080:8080 \
-e "[email protected]" -e "userPassword=123456" \
-e "serverHost=localhost" -e "serverPort=8080" \
-d zhouzhuojie/lcdaily
```