Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
22 commits
Select commit Hold shift + click to select a range
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
60 changes: 60 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,60 @@
# Logs
*.log
logs/
wifi_auto_auth.log*

# Database files
*.db
wifi_log.db

# Configuration files (personal)
config.json

# Python
__pycache__/
*.pyc
*.pyo
*.pyd
.Python
build/
develop-eggs/
dist/
downloads/
eggs/
.eggs/
lib/
lib64/
parts/
sdist/
var/
wheels/
*.egg-info/
.installed.cfg
*.egg

# Virtual environments
venv/
env/
ENV/
.venv/
.env

# IDEs
.vscode/
.idea/
*.swp
*.swo
*~

# OS
.DS_Store
.DS_Store?
._*
.Spotlight-V100
.Trashes
ehthumbs.db
Thumbs.db

# Temporary files
*.tmp
*.temp
49 changes: 49 additions & 0 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
# Contributing to WiFi-Auto-Auth

Welcome! We're excited to have you contribute to this project. Don't worry if you're new to open source - we're here to help!

## First Things First - Star This Repo!

Click the ⭐ button at the top right of this page. It helps others find this project!

---

## Quick Start (5 Simple Steps)

### Step 1: Pick an Issue
- Go to the [Issues tab](../../issues)
- Look for `good first issue` label if you're new
- Comment "I'd like to work on this!" on the issue

### Step 2: Set Up Your Workspace
```bash
# Fork this repo (click Fork button on GitHub), then:
git clone https://github.com/01bps/WiFi-Auto-Auth.git
cd WiFi-Auto-Auth
git checkout -b my-new-feature
```
### Step 3: Make Your Changes

Write your code
Test it locally
Make sure it works!

### Step 4: Document What You Did
Open [HACKTOBERFEST.md](HACKTOBERFEST.md) and add your contribution at the bottom:
## What I Added/Fixed
**Contributor:** @your-github-username
**Issue:** #issue-number

### What I Changed:
- Added/Fixed/Improved [describe in simple words]
- Modified these files: `filename.py`

---
### Step 5: Submit Your Work
```bash
git add .
git commit -m "Added [brief description] (fixes #issue-number)"
git push origin my-new-feature
```

Then go to GitHub and click "Create Pull Request"
Loading