Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Renamed project to norns #4

Merged
merged 1 commit into from
Nov 26, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1 +1 @@
# ttrpg-planner
# norns
2 changes: 1 addition & 1 deletion manage.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

def main():
"""Run administrative tasks."""
os.environ.setdefault("DJANGO_SETTINGS_MODULE", "horae.settings")
os.environ.setdefault("DJANGO_SETTINGS_MODULE", "norns.settings")
try:
from django.core.management import ( # pylint: disable=import-outside-toplevel
execute_from_command_line,
Expand Down
File renamed without changes.
4 changes: 2 additions & 2 deletions horae/asgi.py → norns/asgi.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
"""
ASGI config for horae project.
ASGI config for norns project.

It exposes the ASGI callable as a module-level variable named ``application``.

Expand All @@ -11,6 +11,6 @@

from django.core.asgi import get_asgi_application

os.environ.setdefault("DJANGO_SETTINGS_MODULE", "horae.settings")
os.environ.setdefault("DJANGO_SETTINGS_MODULE", "norns.settings")

application = get_asgi_application()
6 changes: 3 additions & 3 deletions horae/settings.py → norns/settings.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
"""
Django settings for horae project.
Django settings for norns project.

Generated by 'django-admin startproject' using Django 4.2.7.

Expand Down Expand Up @@ -51,7 +51,7 @@
"django.middleware.clickjacking.XFrameOptionsMiddleware",
]

ROOT_URLCONF = "horae.urls"
ROOT_URLCONF = "norns.urls"

TEMPLATES = [
{
Expand All @@ -69,7 +69,7 @@
},
]

WSGI_APPLICATION = "horae.wsgi.application"
WSGI_APPLICATION = "norns.wsgi.application"


# Database
Expand Down
2 changes: 1 addition & 1 deletion horae/urls.py → norns/urls.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
"""
URL configuration for horae project.
URL configuration for norns project.

The `urlpatterns` list routes URLs to views. For more information please see:
https://docs.djangoproject.com/en/4.2/topics/http/urls/
Expand Down
4 changes: 2 additions & 2 deletions horae/wsgi.py → norns/wsgi.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
"""
WSGI config for horae project.
WSGI config for norns project.

It exposes the WSGI callable as a module-level variable named ``application``.

Expand All @@ -11,6 +11,6 @@

from django.core.wsgi import get_wsgi_application

os.environ.setdefault("DJANGO_SETTINGS_MODULE", "horae.settings")
os.environ.setdefault("DJANGO_SETTINGS_MODULE", "norns.settings")

application = get_wsgi_application()
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[tool.poetry]
name = "ttrpg-planner"
name = "norns"
version = "0.1.0"
description = ""
authors = ["Josh Odell <87207916+j01101111sh@users.noreply.github.com>"]
Expand Down