Home > wombat

wombat

Wombat is a project mainly written in PYTHON and C++, it's free.

asset management system written in Flask (python)

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

Require valid-user

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

Previous:Zoo-Password