-
Notifications
You must be signed in to change notification settings - Fork 0
/
README
63 lines (44 loc) · 2.11 KB
/
README
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
Wombat Asset Management System
Built using microframework called flask in python. Utilizes SQLite3 and SQLAlchemy. Currently under construction
**********************UPDATE******************************
Use a simple one file database and repository setup
simply do:
python setup.py
*************CREATING A DUMMY REPOSITORY******************
Following the Ubuntu way here, pretty sure it should work for the rest of the distros, commands are generic except
the package manager, but please be sure to check your distro's man page to create a dummy localhost repo
sudo aptitude install libapache2-svn
sudo mkdir /home/svn/dummy
sudo svnadmin create /home/svn/dummy
sudo groupadd -g 1203 subversion
sudo usermod -a -G subversion www-data
sudo chown -R www-data:subversion dummy
sudo chmod -R g+rws dummy
okay this should have setup your dummy repository in /home/svn/dummy but access is not given through http:// or https://
for http:// add the following to /etc/apache2/mods-available/dav_svn.conf
<Location /svn/dummy>
DAV svn
SVNPath /home/svn/dummy
AuthType Basic
AuthName "dummy subversion repository"
AuthUserFile /etc/subversion/passwd
<LimitExcept GET PROPFIND OPTIONS REPORT>
Require valid-user
</LimitExcept>
</Location>
and do this to restart apache2
sudo /etc/init.d/apache2 restart
**********************3DTests*****************************
simply do this after copying the Ogre3D folder into your working directory:
./bootstrap
./configure
make
after having done so you'll find the TutorialApplication.cpp has code and all you need to do after every time you
edit your code is:
./build-execute.sh
It will automatically compile
build and copy the OgreApp binary to the dist/bin so that it can have resource.cfg ready and execute it.
*************NOTE*********************
The application will not work out of the box because the database doesn't consist of the tables being used in the code
they have been changed. Wombat is being ported to work on the updated Database
UPDATE: Application now works out of the box, you just need to follow the README to initialize the Database and Repository