Boring web framework to get stuff done. A framework on top of a framework.
-
Install latest Python binary
-
Download and unzip project from https://github.com/letam/web-framework/master.zip
-
Open terminal and change present directory to be the project directory
-
Create and activate python virtual environment for the project
python3 -m venv venv source venv/bin/activate
-
Install project requirements
pip install -U pip pip install -r requirements.txt
-
Run project migrations
python server/manage.py migrate
-
Run the development server
python server/manage.py runserver
The test scripts are located in the tests
directory.
To run tests for all django/server apps in the project, run:
./tests/test-server-apps.sh