Skip to content

Commit 876e5e0

Browse files
author
Alexander Smishlajev
committed
migrate to new layout
1 parent 1938d1f commit 876e5e0

File tree

7 files changed

+85
-366
lines changed

7 files changed

+85
-366
lines changed

templates/minimal/__init__.py

Lines changed: 0 additions & 24 deletions
This file was deleted.

templates/minimal/config.py

Lines changed: 0 additions & 156 deletions
This file was deleted.

templates/minimal/dbinit.py

Lines changed: 0 additions & 105 deletions
This file was deleted.

templates/minimal/detectors/__init__.py

Lines changed: 0 additions & 40 deletions
This file was deleted.

templates/minimal/initial_data.py

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
#
2+
# TRACKER DATABASE INITIALIZATION
3+
#
4+
5+
# create the two default users
6+
user = db.getclass('user')
7+
user.create(username="admin", password=adminpw,
8+
address=admin_email, roles='Admin')
9+
user.create(username="anonymous", roles='Anonymous')
10+
11+
# add any additional database create steps here - but only if you
12+
# haven't initialised the database with the admin "initialise" command
13+
14+
# vim: set et sts=4 sw=4 :

templates/minimal/interfaces.py

Lines changed: 0 additions & 41 deletions
This file was deleted.

0 commit comments

Comments
 (0)