Custom Query (49 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (25 - 27 of 49)

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
Ticket Resolution Summary Owner Reporter
#46 fixed Move session_factory and authn_policy salt hashes to the config/ini files borja borja
Description

In the main() method in source:OpenWorkouts-git/ow/__init__.py we do some pyramid setup, including setting up a SignedCookieSessionFactory? and AuthTktAuthenticationPolicy? instances. Both require some salt hashes to be provided. Those hashes are right now hardcoded there, while it would be better to put them into the proper .ini files.

#45 fixed Add migrations for the database borja borja
Description

Add code to support migrations on the ZODB

#41 fixed Write helper scripts... borja borja
Description

... so new developers can set up an environment quickly.

install script:

Requirements/workflow idea:

  1. developer grabs copy of the repo (either darcs or git)
  1. developer gives exec permission to the bin/install script
  1. developer exec ./bin/install within the repo:

3.1. ./bin/install PATH <- this installs everything in the given path

3.2. ./bin/install <- this installs everything in the user home, ~/openworkouts

The steps the installer has to go through:

  1. check python3 is installed
  1. create virtual env
  1. activate virtual env
  1. pip install --upgrade setuptools pip
  1. pip install --upgrade --process-dependency-links -e .[testing]
  1. chmod +x bin/js_deps bin/start bin/stop
  1. ./bin/js_deps
  1. show a message telling the user how to start/stop/restart the services

start/stop/restart

Basically, start will run pserve --reload development.ini, stop will kill that process, restart calls stop, then start.

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
Note: See TracQuery for help on using queries.