Cleanup
This commit is contained in:
parent
057a7399c1
commit
829efffce7
2
.gitignore
vendored
2
.gitignore
vendored
@ -1 +1 @@
|
||||
/Serwer_django/.idea/*
|
||||
/MUOR/.idea/*
|
||||
|
@ -1,5 +1,5 @@
|
||||
"""
|
||||
ASGI config for Serwer_django project.
|
||||
ASGI config for MUOR project.
|
||||
|
||||
It exposes the ASGI callable as a module-level variable named ``application``.
|
||||
|
||||
@ -11,6 +11,6 @@ import os
|
||||
|
||||
from django.core.asgi import get_asgi_application
|
||||
|
||||
os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'Serwer_django.settings')
|
||||
os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'MUOR.settings')
|
||||
|
||||
application = get_asgi_application()
|
@ -1,5 +1,5 @@
|
||||
"""
|
||||
Django settings for Serwer_django project.
|
||||
Django settings for MUOR project.
|
||||
|
||||
Generated by 'django-admin startproject' using Django 4.0.1.
|
||||
|
||||
@ -25,8 +25,7 @@ SECRET_KEY = 'django-insecure-t52#vo-k9ty*$@u9bf75hrkd#^o_)gadrz9$7w%xnkb-0#y!bi
|
||||
# SECURITY WARNING: don't run with debug turned on in production!
|
||||
DEBUG = True
|
||||
|
||||
ALLOWED_HOSTS = []
|
||||
|
||||
ALLOWED_HOSTS = ['127.0.0.1', 'localhost']
|
||||
|
||||
# Application definition
|
||||
|
||||
@ -50,7 +49,7 @@ MIDDLEWARE = [
|
||||
'django.middleware.clickjacking.XFrameOptionsMiddleware',
|
||||
]
|
||||
|
||||
ROOT_URLCONF = 'Serwer_django.urls'
|
||||
ROOT_URLCONF = 'MUOR.urls'
|
||||
|
||||
TEMPLATES = [
|
||||
{
|
||||
@ -69,7 +68,7 @@ TEMPLATES = [
|
||||
},
|
||||
]
|
||||
|
||||
WSGI_APPLICATION = 'Serwer_django.wsgi.application'
|
||||
WSGI_APPLICATION = 'MUOR.wsgi.application'
|
||||
|
||||
|
||||
# Database
|
@ -1,4 +1,4 @@
|
||||
"""Serwer_django URL Configuration
|
||||
"""MUOR URL Configuration
|
||||
|
||||
The `urlpatterns` list routes URLs to views. For more information please see:
|
||||
https://docs.djangoproject.com/en/4.0/topics/http/urls/
|
@ -1,5 +1,5 @@
|
||||
"""
|
||||
WSGI config for Serwer_django project.
|
||||
WSGI config for MUOR project.
|
||||
|
||||
It exposes the WSGI callable as a module-level variable named ``application``.
|
||||
|
||||
@ -11,6 +11,6 @@ import os
|
||||
|
||||
from django.core.wsgi import get_wsgi_application
|
||||
|
||||
os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'Serwer_django.settings')
|
||||
os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'MUOR.settings')
|
||||
|
||||
application = get_wsgi_application()
|
@ -6,7 +6,7 @@ import sys
|
||||
|
||||
def main():
|
||||
"""Run administrative tasks."""
|
||||
os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'Serwer_django.settings')
|
||||
os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'MUOR.settings')
|
||||
try:
|
||||
from django.core.management import execute_from_command_line
|
||||
except ImportError as exc:
|
2
MUOR/requirements.txt
Normal file
2
MUOR/requirements.txt
Normal file
@ -0,0 +1,2 @@
|
||||
Django
|
||||
django-crispy-forms
|
Before Width: | Height: | Size: 1.4 KiB After Width: | Height: | Size: 1.4 KiB |
Before Width: | Height: | Size: 147 KiB After Width: | Height: | Size: 147 KiB |
Before Width: | Height: | Size: 153 KiB After Width: | Height: | Size: 153 KiB |
@ -1,10 +1,10 @@
|
||||
# MultiUserOpenRefine
|
||||
|
||||
![MultiUserOpenRefine](Serwer_django/static/images/logo.svg)
|
||||
![MultiUserOpenRefine](MUOR/static/images/logo.svg)
|
||||
|
||||
MultiUserOpenRefine is an extension to open-source tool that, in addition to
|
||||
all the features described below, allows creating user accounts, each providing
|
||||
private workspace and leaving the convenience of running the basic OpenRefine
|
||||
MultiUserOpenRefine is an extension to open-source tool that, in addition to all
|
||||
the features described below, allows creating user accounts, each providing
|
||||
private workspace and leaving the convenience of running the basic OpenRefine
|
||||
tool on a remote server.
|
||||
|
||||
Project is being developed at Adam Mickiewicz University in Poznań by students.
|
||||
|
Loading…
Reference in New Issue
Block a user