Compare commits

...

No commits in common. "4dc66bb23638aebc3f6e5c19f913ce70d4438985" and "eada2d171fc14cd856ab1e1d3332e5350c910a15" have entirely different histories.

13 changed files with 84 additions and 2 deletions

2
.gitignore vendored
View File

@ -1,3 +1,3 @@
.idea/*
.venv/*
__pycache__/
__pycache__/

BIN
db.sqlite3 Normal file

Binary file not shown.

1
epb_site/.env Normal file
View File

@ -0,0 +1 @@
GEMINI_API_KEY=AIzaSyAYt9n5dF2ZwOVYTbPV4_T5S0La2u5i1LU

0
epb_site/__init__.py Normal file
View File

16
epb_site/asgi.py Normal file
View File

@ -0,0 +1,16 @@
"""
ASGI config for epb_site project.
It exposes the ASGI callable as a module-level variable named ``application``.
For more information on this file, see
https://docs.djangoproject.com/en/5.1/howto/deployment/asgi/
"""
import os
from django.core.asgi import get_asgi_application
os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'epb_site.settings')
application = get_asgi_application()

View File

@ -1,7 +1,10 @@
import os
import google.generativeai as genai
from dotenv import load_dotenv
genai.configure(api_key=os.environ["GEMINI_API_KEY"])
load_dotenv()
genai.configure(api_key=os.getenv("GEMINI_API_KEY"))
# Create the model
generation_config = {

24
epb_site/urls.py Normal file
View File

@ -0,0 +1,24 @@
"""
URL configuration for epb_site project.
The `urlpatterns` list routes URLs to views. For more information please see:
https://docs.djangoproject.com/en/5.1/topics/http/urls/
Examples:
Function views
1. Add an import: from my_app import views
2. Add a URL to urlpatterns: path('', views.home, name='home')
Class-based views
1. Add an import: from other_app.views import Home
2. Add a URL to urlpatterns: path('', Home.as_view(), name='home')
Including another URLconf
1. Import the include() function: from django.urls import include, path
2. Add a URL to urlpatterns: path('blog/', include('blog.urls'))
"""
from django.contrib import admin
from django.urls import path
from . import views
urlpatterns = [
path('', views.home, name='home'),
path('about/', views.about, name='about'),
]

16
epb_site/wsgi.py Normal file
View File

@ -0,0 +1,16 @@
"""
WSGI config for epb_site project.
It exposes the WSGI callable as a module-level variable named ``application``.
For more information on this file, see
https://docs.djangoproject.com/en/5.1/howto/deployment/wsgi/
"""
import os
from django.core.wsgi import get_wsgi_application
os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'epb_site.settings')
application = get_wsgi_application()

22
manage.py Normal file
View File

@ -0,0 +1,22 @@
#!/usr/bin/env python
"""Django's command-line utility for administrative tasks."""
import os
import sys
def main():
"""Run administrative tasks."""
os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'epb_site.settings')
try:
from django.core.management import execute_from_command_line
except ImportError as exc:
raise ImportError(
"Couldn't import Django. Are you sure it's installed and "
"available on your PYTHONPATH environment variable? Did you "
"forget to activate a virtual environment?"
) from exc
execute_from_command_line(sys.argv)
if __name__ == '__main__':
main()