- Windows Setup Guide
- MacOS Setup Guide
- New Database - Configuration
- Existing Database Import - Configuration
Description | Note |
---|---|
Download the mySQL installer for windows at https://dev.mysql.com/downloads/installer/ | |
Select Custom Setup Type | |
Select MySQL Server , MySQL Workbench , and Connector/ODBC from available products |
|
Execute and proceed until adding password to root account | |
Proceed until install is done | |
Open a command prompt | |
Enter mysql -u root -p and enter password |
|
Enter SET PASSWORD FOR root@localhost=''; |
|
Enter CREATE DATABASE oaies; |
Or any other database name. But it must be changed in the settings.py file |
Open scripts folder (in the python folder in appdata/program) where pip is located in cmd | |
Enter pip install mysqlclient |
|
Enter pip install django-utils-six |
|
Enter pip install pdfplumber |
|
Enter pip install django-quill-editor |
|
Enter pip install django-tinymce |
|
Enter pip install virtualenv |
|
Enter pip install virtualenvwrapper-win |
|
Enter mkvirtualenv foldername |
|
Download project zip | |
Unzip downloaded project files into the created virtual env folder | |
Open the folder containing manage.py , enter cmd in the folder path to open a command prompt with the path |
Always Do This before running the server or performing runserver |
Enter python manage.py makemigrations |
|
Enter python manage.py migrate |
|
Enter python manage.py runserver |
This step is only to confirm it works. Run this command every time to run server |
Close cmd to stop server from running | |
Perform these steps next - Configuration | Must be done before using system/application |
Description | Note |
---|---|
Open a terminal | |
Enter /usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)" |
Install homebrew only for users running macOS High Sierra, Sierra, El Capitan, or earlier |
Enter /bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install.sh)" |
Install homebrew only for users running macOs Catalina, Mojave, or Big Sur, or later |
Enter brew install mysql |
|
Open a terminal window | |
Enter mysql -u root -p and enter password |
Note: try mysql.server start if unable to start sql |
Enter SET PASSWORD FOR root@localhost=''; |
|
Enter CREATE DATABASE oaies; |
Or any other database name. But it must be changed in the settings.py file |
Enter brew install python3 |
|
Enter sudo easy_install pip |
|
Enter sudo pip install virtualenv |
|
Enter virtualenv foldername |
|
Enter cd foldername |
MUST CD INTO THE FOLDER |
Enter source bin/activate |
ONLY DO THIS IN THE VIRTUAL ENV FOLDER CREATED |
Enter python -m pip install Django |
|
Enter pip install mysqlclient |
|
Enter pip install django-utils-six |
|
Enter pip install pdfplumber |
|
Enter pip install django-quill-editor |
|
Enter pip install django-tinymce |
|
Download project zip | |
Extract downloaded zip to virtual env folder created | |
Open the folder containing the manage.py file, then, right click on the folder name on the folder path, then select open in terminal Or just manually cd into the folder containing the manage.py file in terminal |
Always Do This before running the server or performing runserver |
Enter python manage.py makemigrations |
|
Enter python manage.py migrate |
|
Enter python manage.py runserver |
This step is only to confirm it works. Run this command every time to run server |
Press ctrl+C to stop server from running | |
Perform these steps next - Configuration |
Warning: This is required (only once during setup for the first time/or the resetting of the database), if not you cannot use the system/application
Step | Description | Screenshot/Note |
---|---|---|
1 | Create a superuser with python manage.py createsuperuser |
Note: If this step fails, or is unable to login, Use step 1.+ |
1.+ | First, Comment out the following in register/views.py . Note: In the original untouched views.py ,all the commented out lines in the screenshot is not commented out by default |
![]() Note: This is what it should look like after performing this step |
1.+ | Then, in register/forms.py uncomment highlighted |
![]() Note: This is what it should look like after performing this step |
1.+ | Then, in register/forms.py comment out the highlighted (Note: role field is neccessary to assign user to group) (Warning: role field will interfere with creating superuser if present) |
![]() Note: This is what it should look like after performing this step |
1.+ | Then, in templates/registerUser.html comment out line3 , line4 and line 17 to line 72 |
![]() Note: This is what it should look like after performing this step |
1.+ | Then, in templates/registerUser.html uncomment line73 and line74 Note: To uncomment, just remove {% comment %} and remove {% endcomment %} from line73 and line74 |
![]() Note: This is what it should look like after performing this step |
2 | CD into folder w/ manage.py then enter python manage.py runserver to run server |
|
3 | Go to http://127.0.0.1:8000/registerUser/ and create superuser | Note: Tick both staff and superuser when registering |
+ | This error will appear, ignore it | ![]() |
4 | Open a browser and enter http://127.0.0.1:8000/admin/ | |
5 | Login with the superuser login created | |
+ | If used step 1.+ to create superuser, and is able to login to admin panel, UNDO all step 1.+ |
Note: VERY IMPORTANT STEP |
6 | Go to http://127.0.0.1:8000/admin/, and select add to add groups (Note: Please follow order of adding groups) |
![]() |
7 | Add the following permissions to the Admin group, then save |
![]() |
8 | Add the following permissions to the Educator group, then save Filter: build, then choose all Note: all except admin, auth, contenttypes, sessions permissions |
![]() |
9 | Add the following permissions to the Student group, then save |
![]() |
10 | To create admin account, Comment out group_required only (like in the above step), Go to http://127.0.0.1:8000/registerUser/ and create admin account, then uncomment group_required again. |
(Note: Do this while logged into the superuser account) (Note: This is important to add users for the application/system) (Warning: Must uncomment group_required Otherwise, any user can create users) |
11 | Once admin account(s) is created, Log out of superuser account and login to created admin account | |
12 | (While Logged into the Admin Account) Create Educator account(s) and Student account(s) |
Note: Educator accounts can create test/quizes/modules and etc. Student accounts can attempt created tests/quizes |
Step | Note |
---|---|
Follow setup manual for your specific OS in the Manuals folder first then perform the below steps | |
Download MySQL workbench | |
Open the database folder | |
Select Instance of mysql connection | |
Click on data import/restore | |
Select Dump20220217 folder inside the Database folder to be imported | |
Superuser Account Credentials - To access admin panel |
Username: Owner Password: oaies@123 |
Admin Account Credentials - Account used to create new admin, educator, and student accounts |
Username: Admin Password: oaies@123 |
Step |
---|
Must have completed the setup and either the new database config or the existing database import config |
Use existing superuser account to login to system |
Access admin panel @ http://127.0.0.1:8000/admin/ |
Create New User |
Enter desired credentials/info |
Set as staff and superuser status on |
Create New Profile |
Link the new profile to new user - important as profile model is linked to the user model |
Done |
Step |
---|
Log into the existing admin account |
Go to http://127.0.0.1:8000/registerUser/ |
Create a new admin account - double check role selection and select Admin |
Done |
Warning: Do not perform this step before creating your own superuser and admin account and before double checking newly created superuser and admin account works
Step |
---|
Login to superuser account |
Go to http://127.0.0.1:8000/admin/ |
Select accounts to be deleted |
Delete them |
Done |