A minimalist community platform for sharing and receiving tax advice.
- 🔐 Ask tax questions anonymously
- 💡 Share your tax knowledge with the community
- 📂 Browse questions by category
- 🎨 Clean, intuitive interface
- ⚡ Fast and lightweight
| Layer | Technology |
|---|---|
| Frontend | Vanilla JS + HTML/CSS |
| Backend | Python Flask |
| Database | SQLite (upgradeable to PostgreSQL) |
| Hosting | GitHub Pages + Render.com |
- Python 3.8+
- pip
- Git
cd backend
pip install -r requirements.txt
python app.pyThe backend will start on http://localhost:5000
cd frontend
python -m http.server 8000Open http://localhost:8000 in your browser to view the application.
taxstorks/
├── backend/ # Flask API server
│ ├── app.py
│ ├── requirements.txt
│ └── ...
├── frontend/ # Vanilla JS + HTML/CSS
│ ├── index.html
│ ├── style.css
│ ├── script.js
│ └── ...
└── README.md
- User authentication & profiles
- Voting/rating system for answers
- Email notifications
- Advanced search & filtering
- Admin panel
- Categories & tags
- Markdown support
Contributions are welcome. Please feel free to submit a Pull Request.
- Fork the repository
- Create your feature branch (
git checkout -b feature/AmazingFeature) - Commit your changes (
git commit -m 'Add some AmazingFeature') - Push to the branch (
git push origin feature/AmazingFeature) - Open a Pull Request
This project is licensed under the MIT License - see the LICENSE file for details.