-
Notifications
You must be signed in to change notification settings - Fork 1
/
README
23 lines (20 loc) · 920 Bytes
/
README
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
To make a schooltool development environment, run:
- docker-compose build
- export UID (to configure container schooltool user with the same UID that the current linux user)
- docker-compose up -d
- ssh schooltool@localhost (add your public ssh key to .ssh/authorized_keys if needed)
- In the previously opened ssh console:
- cd sandbox
- make
- cd schooltool.peas (or schooltool.isli or schooltool.rising)
- make develop
- make run
You can now visit http://localhost:7080
Notes to release a new version:
-Merge source changes with package branch: bzr merge <branch>
-Edit changes, version and debian/changelog
-Commit and push: bzr add .; bzr commit; bzr push :parent
-make release. Move dist/tar.gz to parent with orig.tar.gz format
-dpkg-buildpackage -us -uc -S
-Sign changes with debsign schooltool.peas_<version>-0ubuntu1_source.changes
-Put signed changes to PPA: dput schooltool.ark <source.changes>