Packages (Ubuntu)
Assumptions
root
user is accessible by a non-root OS user, with password root
(in order to run reset_database.sh
)git config --global core.symlink true
and cross your fingersdatabase
and app/scripts
git clone git@github.com:BCStudentSoftwareDevTeam/celts.git
)flask run
! Otherwise, try rebuilding the container again.git clone git@github.com:BCStudentSoftwareDevTeam/celts.git
source setup.sh
sudo systemctl start mysql
or /etc/init.d/mysql start
(Linux) or brew services start mysql
(Mac OS with Homebrew)app/config/default.yml
. ORdb
configuration lines from app/config/default.yml
and paste them into app/config/local-override.yml
. Edit them to create custom database, username, and password configurations. They will need to match what is in your MySQL service. database/reset_database.sh test
. Use the from-backup
argument instead of test
to use production data.flask run
in the root directoryTests should be added in tests/code/
, logically grouped into files named test_EXAMPLE.py
. You can run tests individually with pytest
, or run the entire suite with tests/run_tests.sh
or tests/monitor.sh
. tests/run_tests.sh
will only execute the test suite once, where tests/monitor.sh
will rerun the test suite everytime a change is made and saved. In most cases, tests/monitor.sh
should be used over tests/run_tests.sh
. Where possible, use TDD (Test-Driven Development) and write your test before the code that makes it pass. Follow the Fail - Implement - Pass cycle.
When running tests, an optional parameter is available. If you would like to run tests in more detail and see which tests specifically pass and fail run tests/monitor.sh --verbose
. To test once specific file instead of the whole suite, add the path to the file after a run tests command like so: tests/monitor.sh tests/code/test_sampleFile.py
.
GitHub Actions is a continuous integration/delivery tool we use that allows us to automatically test our code on push. When you prepare to merge a branch into development, GitHub Actions will run our test suite on Python versions 3.7-3.11 and prevent you from merging your code into development if there are any failing tests. You can see the status of the test suite with an icon next to the pull request title that will display a check if all the tests are passing or an x if the tests are failing. GitHub actions will give you a more in depth breakdown of the tests if you are viewing a specific pull request.
If you would like to learn more about Actions you can read more here: https://docs.github.com/en/actions/learn-github-actions/understanding-github-actions
source setup.sh
and ./reset\_database.sh
, in that order, without errors. Errors there should be resolved first.The currently logged-in user is stored in Flask's request global variable g
. Import it with from flask import g
, and then you can access the user data in your controller with g.current_user
. Jinja templates can also access this variable without an import, with {{g.current_user}}
.
The default user is set in defaults.yml. If you want to change the user for testing purposes, add a default_user
item in config/local-override.yml
. The user will be loaded from the database, or created if none exists. Since there is no Active Directory data in development, if you want the data to be correct you should add the user to database/test_data.py
.
reset_database.sh
to rebuild your database. If you want to preserve your data, run migrate_db.sh
or do it manually (see below).pip freeze > requirements.txt
to export all imports to a file. This file is used by setup.sh when the next user runs source setup.sh
Use Peewee Migrator to update models: https://pypi.org/project/peewee-migrations/. Usually in development you will just reset your database to get it back in a 'clean' state.
pip install peewee-migrations
(included in setup.sh, so you shouldn't need this)pem init
pem add app.models.user.User
pem watch
pem migrate
NOTE: You don't need to watch the files before you begin making changes. The watch will compare the db to your model file and make any changes that are inconsistent.
Additional helpful commands:
List active migrations: pem list
Show SQL generated by changes to the model: pem show
If encountering issues, run reset_database.sh
.
There are a couple of options to test email handling. By default, all emails will be logged to the slack channel #celts-emails in the bereacs workspace.
If you want to test with actual emails, use an email other than outlook to test email handler. This setup is specific to gmail, but should work with any other email that allows you to make app passwords
This is SSDT Documentation that contains details, references, workflow, system administration, etc. You are welcome to contribute to it and/or review it:
http://ssdt-documentation.berea.edu/
This is a permissions spreadsheet that lists all possible roles a user could have in the application and what permissions they are allowed. If you are adding a new role or feature please update this document:
https://docs.google.com/spreadsheets/d/1RQao6WqHZFZo0rYBPnuwnhvVI856ysqTaY0a5m3IR1Q/edit?usp=sharing