https://github.com/toggle-corp/palika-profile
https://github.com/toggle-corp/palika-profile
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/toggle-corp/palika-profile
- Owner: toggle-corp
- Created: 2018-12-03T13:27:17.000Z (over 6 years ago)
- Default Branch: develop
- Last Pushed: 2022-12-09T13:44:27.000Z (over 2 years ago)
- Last Synced: 2025-01-09T07:13:03.581Z (4 months ago)
- Language: Python
- Size: 50.7 MB
- Stars: 0
- Watchers: 5
- Forks: 0
- Open Issues: 26
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Palika Profile Report Generation
### Requirements
- Cairo: https://pycairo.readthedocs.io/en/latest/getting_started.html
- PyG: https://pygobject.readthedocs.io/en/latest/getting_started.html
- libffi: https://sourceware.org/libffi/
- drafter: https://github.com/bibekdahal/drafter
- maps: https://github.com/eoglethorpe/hrrp-maps
### Docker [Development]
```
docker-compose pull # pull images (you can use this instead of build)
docker-compose build # build images
docker-compose up # start the containers
```#### Develop with local drafter and hrrp-maps code
- create new `docker-compose-custom.yml` using `docker-compose.yml`
- update `server` **volumes** entry with **drafter** or **hrrp-maps** code path
```
volumes:
- ./:/code
- ..path_to_drafter/:/dep/drafter
- ..path_to_hrrp-maps:/dep/hrrp-maps
```
- and start the server
```
docker-compose -f docker-compose-custom.yml up
```### Docker [Production]
```
docker-compose -f production.yml up -d # start containers in daemon mode
docker-compose -f production.yml logs -f # follow logs
docker-compose -f production.yml stop # stop containers
docker-compose -f production.yml down # stop and delete containers
```