- Main CMS portal
- Public Facing portal
- Admin portal (behind VPN)
- Main API
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
django: | |
image: project/portal:local | |
links: | |
- potgresql:postgresql | |
- memcached:memcached | |
volumes: | |
- ./../src:/srv/www/project | |
- static:/srv/www/project/static | |
- media:/srv/www/project/media | |
ports: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
django: | |
volumes: | |
- ./../src:/srv/www/project | |
- static:/srv/www/project/static | |
- media:/srv/www/project/media | |
ports: | |
- 8001:8000 | |
command: /srv/www/project/bin/run-dev.sh | |
volumes: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
django: | |
image: project/portal:local | |
links: | |
- potgresql:postgresql | |
- memcached:memcached | |
volumes: | |
- ./../src:/srv/www/project | |
- /srv/www/project/static:/srv/www/project/static | |
- /srv/www/project/media:/srv/www/project/media | |
ports: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import template from './../../templates/components/push-keys.modal.html'; | |
class SystemPushKeysController { | |
constructor(SystemsService){ | |
this.SystemsService = SystemsService; | |
this.form = {}; | |
this.ui = {}; | |
//this.ok.bind(this); | |
} |