fixed some naming issues

This commit is contained in:
Rushil Umaretiya 2020-12-12 15:12:14 -05:00
parent c8f3a37239
commit 05090b46b0
No known key found for this signature in database
GPG Key ID: 4E8FAF9C926AF959
7 changed files with 126 additions and 13 deletions

View File

@ -5,7 +5,6 @@ name = "pypi"
[packages]
django = "*"
django-rest-framework = "*"
djangorestframework = "*"
[dev-packages]

9
site/Pipfile.lock generated
View File

@ -1,7 +1,7 @@
{
"_meta": {
"hash": {
"sha256": "922266325ee21daf6159ead92f6ad3768181e3ecf3e7ca9bf036ca228588299f"
"sha256": "b890b2061eb6fc1d8bf94ed78d77990ac519683b06b3819184b0effc5cedbd47"
},
"pipfile-spec": 6,
"requires": {
@ -32,13 +32,6 @@
"index": "pypi",
"version": "==3.1.4"
},
"django-rest-framework": {
"hashes": [
"sha256:47a8f496fa69e3b6bd79f68dd7a1527d907d6b77f009e9db7cf9bb21cc565e4a"
],
"index": "pypi",
"version": "==0.1.0"
},
"djangorestframework": {
"hashes": [
"sha256:0209bafcb7b5010fdfec784034f059d512256424de2a0f084cb82b096d6dd6a7"

View File

@ -38,7 +38,7 @@ INSTALLED_APPS = [
'django.contrib.messages',
'django.contrib.staticfiles',
'rest_framework',
'front_end',
'frontend',
'api',
]
@ -71,7 +71,7 @@ TEMPLATES = [
},
]
WSGI_APPLICATION = 'HackTJ2020.wsgi.application'
WSGI_APPLICATION = 'config.wsgi.application'
# Database

File diff suppressed because one or more lines are too long

View File

@ -0,0 +1,119 @@
/*!**********************!*
!*** ./src/index.js ***!
\**********************/
/*!*******************************!*
!*** ./src/components/App.js ***!
\*******************************/
/*!************************************!*
!*** ./src/components/HomePage.js ***!
\************************************/
/*!*************************************!*
!*** ./node_modules/react/index.js ***!
\*************************************/
/*!***************************************!*
!*** ./node_modules/isarray/index.js ***!
\***************************************/
/*!*****************************************!*
!*** ./node_modules/react-dom/index.js ***!
\*****************************************/
/*!*****************************************!*
!*** ./node_modules/scheduler/index.js ***!
\*****************************************/
/*!******************************************!*
!*** ./node_modules/prop-types/index.js ***!
\******************************************/
/*!*********************************************!*
!*** ./node_modules/history/esm/history.js ***!
\*********************************************/
/*!*********************************************!*
!*** ./node_modules/object-assign/index.js ***!
\*********************************************/
/*!**********************************************!*
!*** ./node_modules/path-to-regexp/index.js ***!
\**********************************************/
/*!*****************************************************!*
!*** ./node_modules/value-equal/esm/value-equal.js ***!
\*****************************************************/
/*!*******************************************************!*
!*** ./node_modules/react-router/esm/react-router.js ***!
\*******************************************************/
/*!********************************************************!*
!*** ./node_modules/react/cjs/react.production.min.js ***!
\********************************************************/
/*!************************************************************!*
!*** ./node_modules/@babel/runtime/helpers/esm/extends.js ***!
\************************************************************/
/*!*************************************************************!*
!*** ./node_modules/prop-types/factoryWithThrowingShims.js ***!
\*************************************************************/
/*!*************************************************************!*
!*** ./node_modules/prop-types/lib/ReactPropTypesSecret.js ***!
\*************************************************************/
/*!***************************************************************!*
!*** ./node_modules/react-router-dom/esm/react-router-dom.js ***!
\***************************************************************/
/*!***************************************************************!*
!*** ./node_modules/resolve-pathname/esm/resolve-pathname.js ***!
\***************************************************************/
/*!****************************************************************!*
!*** ./node_modules/react-dom/cjs/react-dom.production.min.js ***!
\****************************************************************/
/*!****************************************************************!*
!*** ./node_modules/scheduler/cjs/scheduler.production.min.js ***!
\****************************************************************/
/*!****************************************************************!*
!*** ./node_modules/tiny-invariant/dist/tiny-invariant.esm.js ***!
\****************************************************************/
/*!******************************************************************!*
!*** ./node_modules/@babel/runtime/helpers/esm/inheritsLoose.js ***!
\******************************************************************/
/*!******************************************************************!*
!*** ./node_modules/mini-create-react-context/dist/esm/index.js ***!
\******************************************************************/
/*!******************************************************************!*
!*** ./node_modules/react-router/node_modules/react-is/index.js ***!
\******************************************************************/
/*!*****************************************************************************!*
!*** ./node_modules/hoist-non-react-statics/node_modules/react-is/index.js ***!
\*****************************************************************************/
/*!*********************************************************************************!*
!*** ./node_modules/@babel/runtime/helpers/esm/objectWithoutPropertiesLoose.js ***!
\*********************************************************************************/
/*!**********************************************************************************!*
!*** ./node_modules/hoist-non-react-statics/dist/hoist-non-react-statics.cjs.js ***!
\**********************************************************************************/
/*!****************************************************************************************!*
!*** ./node_modules/react-router/node_modules/react-is/cjs/react-is.production.min.js ***!
\****************************************************************************************/
/*!***************************************************************************************************!*
!*** ./node_modules/hoist-non-react-statics/node_modules/react-is/cjs/react-is.production.min.js ***!
\***************************************************************************************************/

View File

@ -3,4 +3,4 @@ from django.shortcuts import render
# Create your views here.
def index(request, *args, **kwargs):
return render(request, 'front_end/index.html')
return render(request, 'frontend/index.html')

View File

@ -6,7 +6,7 @@ import sys
def main():
"""Run administrative tasks."""
os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'HackTJ2020.settings')
os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'config.settings')
try:
from django.core.management import execute_from_command_line
except ImportError as exc: