Skip to content

Latest commit

 

History

History
81 lines (65 loc) · 1.6 KB

File metadata and controls

81 lines (65 loc) · 1.6 KB

Day XXX -

Overview

One-sentence summary of what this project does.

Requirements

  • Input:
  • Output:
  • Core Features:

Tech Stack

  • Python
  • (Optional) HTML/CSS/JavaScript

Run Locally

Python

python3 main.py

Web (if exists)

python3 -m http.server 8000
# Open http://localhost:8000

Publish as a public GitHub repo

Recommended: make this folder its own repo root.

cd 100docp-day-<DAY_3DIGIT>-<PROJECT_SLUG>
git init
git add .
git commit -m "Initialize <PROJECT_SLUG> (Python + Web Demo)"
gh repo create 100docp-day-<DAY_3DIGIT>-<PROJECT_SLUG> --public --source=. --remote=origin --push

Enable GitHub Pages

  1. Open your repo on GitHub.
  2. Go to Settings -> Pages.
  3. Under Build and deployment, choose:
    • Source: Deploy from a branch
    • Branch: main and / (root)
  4. Save, then wait about 1-2 minutes.

Live Demo

  • URL: https://<GITHUB_USERNAME>.github.io/100docp-day-<DAY_3DIGIT>-<PROJECT_SLUG>/

Repository

Project Structure

.
├── LICENSE
├── README.md
├── main.py
├── index.html
├── style.css
├── app.js
└── screenshots
    └── main.png

What I Learned

Improvements (Next)

Screenshot

project screenshot

Reference