Projekte: Unterschied zwischen den Versionen
Zur Navigation springen
Zur Suche springen
| Zeile 4: | Zeile 4: | ||
=== Python Environment-Installation im entsprechenden Verzeichnis === | === Python Environment-Installation im entsprechenden Verzeichnis === | ||
*python3 -m venv .venv | |||
*.venv\Scripts\activate.ps1 | |||
oder | |||
source .venv/bin/activate | |||
jetzt kann python.exe mit python benutzt werden | |||
deactivate ==> das Enviroment wieder deaktivieren | |||
*pip install django mysqlclient | |||
pip install --upgrade django | pip install --upgrade django | ||
*pip list | |||
*python -m django --version | |||
ℹ nur zur Prüfung ob alles OK ist | ℹ nur zur Prüfung ob alles OK ist | ||
*python -m pip install -U Django | |||
ℹ Django upgraden | ℹ Django upgraden | ||
<nowiki>=== Projekt anlegen ===</nowiki> | |||
1. django-admin startproject astroneth | 1. django-admin startproject astroneth | ||
| Zeile 36: | Zeile 39: | ||
'PASSWORD': 'xxxxxxxxx', | 'PASSWORD': 'xxxxxxxxx', | ||
'HOST': 'localhost', | 'HOST': 'localhost', | ||
'PORT': '', | 'PORT': '','' | ||
} | } | ||
} | } | ||
| Zeile 68: | Zeile 71: | ||
1. python manage.py runserver | 1. python manage.py runserver | ||
## Hompage Deployment | ##Hompage Deployment | ||
* git pull git@github.com:holnet/Homepage.git | *git pull git@github.com:holnet/Homepage.git | ||
* sudo systemctl restart apache2 | *sudo systemctl restart apache2 | ||
{{Hauptseite}} | {{Hauptseite}} | ||
[[Kategorie:Projekte]] | [[Kategorie:Projekte]] | ||
Version vom 29. Juni 2023, 23:50 Uhr
Projekt Homepage astroneth.eu
Python Environment-Installation im entsprechenden Verzeichnis
- python3 -m venv .venv
- .venv\Scripts\activate.ps1
oder source .venv/bin/activate jetzt kann python.exe mit python benutzt werden deactivate ==> das Enviroment wieder deaktivieren
- pip install django mysqlclient
pip install --upgrade django
- pip list
- python -m django --version
ℹ nur zur Prüfung ob alles OK ist
- python -m pip install -U Django
ℹ Django upgraden
=== Projekt anlegen ===
1. django-admin startproject astroneth 1. python manage.py startapp home 1. urls.py erstellen und registrieren (include in Projekt urls.py) 1. settings.py bearbeiten
DATABASES = {
'default': {
'ENGINE': 'django.db.backends.mysql',
'NAME': 'db-name',
'USER': 'db-user',
'PASSWORD': 'xxxxxxxxx',
'HOST': 'localhost',
'PORT': ,
}
}
INSTALLED_APPS = [
'home',
...
TEMPLATES = [
{
...
'DIRS': [(BASE_DIR / 'templates')],
...
LANGUAGE_CODE = 'de'
TIME_ZONE = 'Europe/Berlin'
STATIC_URL = 'static/'
#STATICFILES_DIRS = [
# BASE_DIR / "static"
#]
STATIC_ROOT = os.path.join(BASE_DIR, "static") *** wieder raus nach collectstatic
1. Ordnerstruktur erweitern (templates und static) 1. python manage.py collectstatic (kopiert die Adminfiles aus den Django-Verzeichnis in static) 1. Models erstellen 1. python manage.py makemigrations 1. python manage.py migrate 1. python manage.py createsuperuser 1. python manage.py runserver
- Hompage Deployment
- git pull git@github.com:holnet/Homepage.git
- sudo systemctl restart apache2
zurück zur ==> Hauptseite