This repository contains multiple web projects:
Infrastructure and configuration for deploying two websites on Google Cloud Platform:
- CG4F.site
- notcheapnot2expensive.com
- Google Cloud Platform account
- Registered domains for both sites
- gcloud CLI installed
- Terraform installed (for infrastructure as code)
.
├── terraform/ # Infrastructure as Code
├── cg4f-site/ # CG4F website files
├── notcheap-site/ # notcheapnot2expensive website files
└── scripts/ # Deployment scripts
- Create a new GCP project
- Enable required APIs:
- Cloud Run
- Cloud Storage
- Cloud DNS
- Cloud Build
- Container Registry
- Configure domain DNS settings
- Set up SSL certificates
A modern web application that helps students find scholarships matching their profile and requirements.
- Advanced search filters (field of study, award amount, deadline, etc.)
- Detailed scholarship information
- User-friendly interface
- Responsive design
- Create a virtual environment:
python -m venv venv
source venv/bin/activate # On Windows: venv\Scripts\activate
- Install dependencies:
pip install -r requirements.txt
- Run the application:
python app.py
- Open http://localhost:5000 in your browser
- Backend: Python/Flask
- Database: SQLAlchemy
- Frontend: HTML5, CSS3, JavaScript
- UI Framework: Bootstrap 5