-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathDeployingApp
More file actions
16 lines (14 loc) · 751 Bytes
/
DeployingApp
File metadata and controls
16 lines (14 loc) · 751 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#CrowdFind
CSCI 3308 - Team 63 Project - CrowdFind
How to Run:
Create new MySQL Database
In settings.py, under DATABASES:
a) Update ENGINE to 'django.db.backends.mysql'
b) Update NAME to name of the database you created
c) Update USER to the username of the database
d) Update PASSWORD' to the password of the database
Open terminal and navigate to CrowdFind/website directory
To sync your database with django run 'python manage.py makemigrations' and once that finishes run 'python manage.py migrate'
To then run the application run 'python manage.py runserver'
Navigate to http://127.0.0.1:8000 to get to login/registraion portion
Testing: See previous Testing file https://github.com/michaelmdresser/CrowdFind/blob/master/TESTING.md