A+chiever is a node-based education framework
NOTE: If you have multiple versions of Python installed, you may have to change the given commands slightly to specify your version. pip3.x and py -3.x should work as alternatives to pip and python aliases.
A+chiever utilizes a Python virtual environment to aid in dependency resolution.
Windows: https://www.postgresql.org/download/windows/
Mac (requires brew [https://brew.sh/]): Run brew install postgresql
cd [repository]
./setup.sh
./run.sh
NOTE: if on Windows, shell scripts should be run in Git Bash to ensure compatibility.
A+chiever utilizes the pytest framework to implement a test suite. To run, either use the run_test_suite.sh script or use the following commands:
cd [repository]/backend
Windows: .venv\Scripts\activate
Mac/Linux: source .venv/Scripts/activate
pytest
A+chiever utilizes CompoDoc to automatically generate documentation for the Angular web application. To run this documentation either use the run_docs.sh script or use the following commands:
cd [repository]/frontend
npm run compodoc:serve-and-build
Pydantic Dev Docs - Docs for Pydantic, the tool we use for backend validation and transformation
Angular DevTools - This is a useful browser extension for debugging angular applications.