Skip to content
This repository was archived by the owner on Oct 29, 2022. It is now read-only.

Commit d3f5d7a

Browse files
committed
add folder structure for site and helpers
1 parent fb21307 commit d3f5d7a

File tree

5 files changed

+21
-0
lines changed

5 files changed

+21
-0
lines changed

.envrc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
layout python python

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -127,3 +127,4 @@ dmypy.json
127127

128128
# Pyre type checker
129129
.pyre/
130+
.direnv

.vscode/settings.json

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"python.analysis.extraPaths": [
3+
"./site/src"
4+
]
5+
}

README.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,10 @@
11
# python_community_stream
22
Content Portal for topics and stream episodes
3+
4+
### Watch the stream:
5+
6+
- https://twitch.tv/kjaymiller
7+
- https://youtube.com/c/kjaymiller
8+
9+
10+
Building the site, use [Render_Engine](https://github.com/kjaymiller/render_engine)

src/build_issues.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
"""Takes Issues Filed in the last week and puts them in a file for the upcoming stream"""
2+
import pathlib
3+
import github
4+
from datetime import datetime
5+
6+
# Get the date of the next friday

0 commit comments

Comments
 (0)