Web portal for collaboration of community volunteers with organizations and institutions.
To run our application in development mode You need to have Docker and Docker Compose.
That's the easiest way to setup environment - from downloaded source code run
docker-compose up
and point your browser to http://localhost:8000 and http://localhost:4200
We have 2 levels of admin users and 2 initial users - with and without Django Admin access:
username | password | Django Admin access |
---|---|---|
hello@codeforpoznan.pl | cfp123 | yes |
wolontariat@wrk.org.pl | wrk123 | no |
- dev (https://dev.volontulo.pl)
- RC (https://rc.volontulo.pl)
- production (https://volontulo.pl)
Working agreement:
- We work in 6-weeks sprints. Code is pushed to the dev instance after merging and passing tests.
- Code freeze at the end of the 5th week. Regression tests can be started after pushing the release branch to release candidate instance.
- Regression lasts for one week and all of the regression bugs, that have been found, should be fixed with highest priority in week 6.
- Afterwards application is to be tested and approved by the client.
- Sign-off from the client means that we push the code to the production after week 6.
Angular implementation use extensively Bootstrap 4 - we will comply with standard Bootstrap 4 breakpoints described on its website.
In order to run tests locally, execute one of the following commands:
make test_all # backend and frontend tests
make test_backend # backend tests + linter
make test_frontend # frontend tests
They will run docker image from the corresponding service. It will run in one-off mode but failed tests will leave a container behind - remember to clean it from time to time.