Skip to content

Django-Rwanda/Django-Rwanda-website

Folders and files

NameName
Last commit message
Last commit date

Latest commit

Β 

History

20 Commits
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 

Repository files navigation

Django Rwanda Community Website

Django Rwanda Logo

Empowering African Developers Through Django

Next.js React TypeScript Tailwind CSS License

Live Demo β€’ Report Bug β€’ Request Feature


πŸ“– About

The Django Rwanda Community website is a modern, full-featured platform built to connect, educate, and empower African developers passionate about Django and web development. It serves as the central hub for the Django Rwanda community, featuring workshops, events, open-source projects, and resources for entrepreneurs.

🎯 Mission

Django Rwanda Community is dedicated to fostering a vibrant, inclusive ecosystem of developers across Africa. We believe in the power of community, collaboration, and open-source innovation to solve local challenges and create global opportunities.

πŸ“Š Community Stats

  • 500+ Community Members
  • 50+ Events Hosted
  • 20+ Open Source Projects

✨ Features

🏠 Homepage

  • Modern hero section with animated backgrounds
  • Community mission and values showcase
  • Featured workshops carousel
  • Upcoming events listing
  • Open-source projects showcase
  • Entrepreneur resources section

πŸ‘₯ Community

  • Join Us - Membership registration with benefits overview
  • Code of Conduct - Community guidelines and standards
  • Contribute - Guidelines for contributing to the community
  • Sponsorship - Partnership opportunities for organizations

πŸ“š Workshops & Learning

  • Comprehensive Django workshops (Beginner to Advanced)
  • Workshop catalog with filtering by skill level
  • Detailed workshop pages with curriculum
  • Registration system for workshops

Available Workshops:

Workshop Level Duration
Django Fundamentals Beginner 4 weeks
Advanced Django Patterns Intermediate 6 weeks
Building APIs with Django REST Intermediate 4 weeks
Full-Stack Django & React Advanced 8 weeks

πŸ“… Events & Meetups

  • Monthly meetups in Kigali
  • Quarterly bootcamps
  • Open Source Contribution Days
  • Event details with registration
  • Location and attendee information

πŸ’» Open Source

Featured community projects:

  • Django-Africa - Toolkit for localized Django apps for African markets
  • Swahili CMS - Content management for African media outlets
  • Local Commerce - E-commerce platform for African small businesses

πŸš€ Resources for Entrepreneurs

  • Startup Toolkit - Essential resources for launching tech startups
  • Funding Directory - Investors, grants, and accelerators
  • Mentorship Network - Connect with experienced entrepreneurs
  • Local Problem Solutions - Ideas for African community challenges

πŸ” Authentication

  • User registration with interest selection
  • Social sign-up (Google, GitHub)
  • Secure login system
  • Terms of Service and Privacy Policy

πŸ“± Additional Pages

  • Contact page with form
  • Privacy Policy
  • Terms of Service
  • Sitemap
  • Event registration
  • Workshop registration

πŸ› οΈ Tech Stack

Core Framework

Styling & UI

Forms & Validation

UI Components

Utilities

Analytics & Monitoring


πŸ“ Project Structure

django-rwanda-website/
β”œβ”€β”€ app/                          # Next.js App Router pages
β”‚   β”œβ”€β”€ page.tsx                  # Homepage
β”‚   β”œβ”€β”€ layout.tsx                # Root layout
β”‚   β”œβ”€β”€ globals.css               # Global styles
β”‚   β”œβ”€β”€ auth/                     # Authentication pages
β”‚   β”‚   β”œβ”€β”€ login/
β”‚   β”‚   └── signup/
β”‚   β”œβ”€β”€ community/                # Community section
β”‚   β”‚   β”œβ”€β”€ page.tsx
β”‚   β”‚   β”œβ”€β”€ code-of-conduct/
β”‚   β”‚   β”œβ”€β”€ contribute/
β”‚   β”‚   β”œβ”€β”€ join/
β”‚   β”‚   └── sponsorship/
β”‚   β”œβ”€β”€ contact/                  # Contact page
β”‚   β”œβ”€β”€ events/                   # Events section
β”‚   β”‚   β”œβ”€β”€ page.tsx
β”‚   β”‚   └── [id]/                 # Dynamic event pages
β”‚   β”œβ”€β”€ get-started/              # Onboarding page
β”‚   β”œβ”€β”€ privacy/                  # Privacy policy
β”‚   β”œβ”€β”€ register/                 # Registration flows
β”‚   β”‚   β”œβ”€β”€ events/
β”‚   β”‚   └── workshops/
β”‚   β”œβ”€β”€ resources/                # Entrepreneur resources
β”‚   β”‚   β”œβ”€β”€ page.tsx
β”‚   β”‚   β”œβ”€β”€ funding-directory/
β”‚   β”‚   β”œβ”€β”€ mentorship/
β”‚   β”‚   β”œβ”€β”€ problem-solutions/
β”‚   β”‚   └── startup-toolkit/
β”‚   β”œβ”€β”€ sitemap/                  # Sitemap
β”‚   β”œβ”€β”€ terms/                    # Terms of service
β”‚   └── workshops/                # Workshops section
β”‚       β”œβ”€β”€ page.tsx
β”‚       └── [id]/                 # Dynamic workshop pages
β”œβ”€β”€ components/                   # React components
β”‚   β”œβ”€β”€ ui/                       # Reusable UI components (50+)
β”‚   β”œβ”€β”€ header.tsx                # Site header
β”‚   β”œβ”€β”€ footer.tsx                # Site footer
β”‚   β”œβ”€β”€ hero.tsx                  # Homepage hero
β”‚   β”œβ”€β”€ community-section.tsx     # Community showcase
β”‚   β”œβ”€β”€ events-section.tsx        # Events showcase
β”‚   β”œβ”€β”€ workshops-section.tsx     # Workshops showcase
β”‚   β”œβ”€β”€ open-source-section.tsx   # Open source projects
β”‚   β”œβ”€β”€ resources-section.tsx     # Resources showcase
β”‚   └── theme-provider.tsx        # Theme context
β”œβ”€β”€ hooks/                        # Custom React hooks
β”‚   β”œβ”€β”€ use-mobile.ts             # Mobile detection
β”‚   └── use-toast.ts              # Toast notifications
β”œβ”€β”€ lib/                          # Utilities
β”‚   β”œβ”€β”€ constants.ts              # Site content/data
β”‚   └── utils.ts                  # Helper functions
β”œβ”€β”€ public/                       # Static assets
└── styles/                       # Additional styles
    └── globals.css

πŸš€ Getting Started

Prerequisites

  • Node.js 18.17 or later
  • Yarn (recommended) or npm

Installation

  1. Clone the repository

    git clone https://github.com/djangorwanda/Django-Rwanda-website.git
    cd Django-Rwanda-website
  2. Install dependencies

    yarn install
  3. Run the development server

    yarn dev
  4. Open your browser

    Navigate to http://localhost:3000

Available Scripts

Command Description
yarn dev Start development server
yarn build Build for production
yarn start Start production server
yarn lint Run ESLint

🎨 UI Components

The project includes a comprehensive UI component library built with Radix UI primitives and styled with Tailwind CSS:

View all 50+ UI components
  • Accordion
  • Alert & Alert Dialog
  • Aspect Ratio
  • Avatar
  • Badge
  • Breadcrumb
  • Button & Button Group
  • Calendar
  • Card
  • Carousel
  • Chart
  • Checkbox
  • Collapsible
  • Command (cmdk)
  • Context Menu
  • Dialog
  • Drawer
  • Dropdown Menu
  • Empty State
  • Field
  • Form
  • Hover Card
  • Input & Input Group
  • Input OTP
  • Item
  • Kbd
  • Label
  • Menubar
  • Navigation Menu
  • Pagination
  • Popover
  • Progress
  • Radio Group
  • Resizable Panels
  • Scroll Area
  • Select
  • Separator
  • Sheet
  • Sidebar
  • Skeleton
  • Slider
  • Sonner (Toast)
  • Spinner
  • Switch
  • Table
  • Tabs
  • Textarea
  • Toast & Toaster
  • Toggle & Toggle Group
  • Tooltip

🌐 Environment Variables

Create a .env.local file in the root directory:

# Analytics (optional)
NEXT_PUBLIC_VERCEL_ANALYTICS_ID=your-analytics-id

# Add other environment variables as needed

πŸ“¦ Deployment

Vercel (Recommended)

The easiest way to deploy is using Vercel:

Deploy with Vercel

Other Platforms

Build the production bundle:

yarn build

The output will be in the .next directory, ready for deployment to any Node.js hosting platform.


🀝 Contributing

We welcome contributions from developers of all skill levels! Here's how you can help:

  1. Fork the repository
  2. Create a feature branch (git checkout -b feature/amazing-feature)
  3. Commit your changes (git commit -m 'Add amazing feature')
  4. Push to the branch (git push origin feature/amazing-feature)
  5. Open a Pull Request

Please read our Code of Conduct before contributing.

Development Guidelines

  • Follow the existing code style
  • Write meaningful commit messages
  • Add tests for new features when applicable
  • Update documentation as needed

πŸ“„ License

This project is licensed under the MIT License - see the LICENSE file for details.


πŸ“ž Contact

Django Rwanda Community


Acknowledgments

  • Next.js - The React Framework
  • Radix UI - Accessible component primitives
  • Tailwind CSS - Utility-first CSS framework
  • Vercel - Deployment platform
  • shadcn/ui - UI component inspiration
  • All our amazing community members and contributors!

Website β€’ GitHub β€’ Twitter

About

A website for the Django Rwanda Community

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Contributors 2

  •  
  •