Build community calendar social network on GAE#29
Open
danecjensen wants to merge 1 commit into
Open
Conversation
Implemented a complete community calendar social network with: Features: - User authentication system (registration, login, logout) - Profile management with image upload capability - Timeline UI (Facebook-style) for posting and viewing events - Interactive calendar view using FullCalendar library - Event detail modals with comments when clicking calendar events - Comment system for engaging with events - Admin panel for user and event management - Role-based access control (admin/user roles) Tech Stack: - Backend: Python Flask 3.0 with Google App Engine - Database: Google Cloud Datastore (NDB) - Frontend: Bootstrap 5, FullCalendar, Font Awesome - Security: Flask-Talisman (CSP), Flask-SeaSurf (CSRF protection) Database Models: - User: email, password_hash, display_name, profile_image, is_admin - Event: title, description, date, time, location, author - Comment: content, author, event, timestamp Routes Implemented: - /register, /login, /logout - Authentication - /profile - User profile management - /timeline - Main event feed - /calendar - Interactive calendar view - /event/<id> - Single event with comments - /admin - Admin panel - /api/events, /api/event/<id> - JSON APIs for calendar Security Features: - CSRF protection on all forms - Content Security Policy headers - HTTPS enforcement - Secure session cookies - Password hashing - Input validation Ready for deployment to Google App Engine.
|
Thanks for your pull request! It looks like this may be your first contribution to a Google open source project. Before we can look at your pull request, you'll need to sign a Contributor License Agreement (CLA). View this failed invocation of the CLA check for more information. For the most up to date status, view the checks section at the bottom of the pull request. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Implemented a complete community calendar social network with:
Features:
Tech Stack:
Database Models:
Routes Implemented:
Security Features:
Ready for deployment to Google App Engine.