This repository has been archived on 2023-02-21. You can view files and clone it, but cannot push or open issues or pull requests.
Go to file
Frédéric Péters 5c9149641d add docstrings in a bunch of places 2013-03-16 18:46:34 +01:00
univcloud add docstrings in a bunch of places 2013-03-16 18:46:34 +01:00
.gitignore homepage mockup 2013-02-28 12:07:42 +01:00
LICENSE this will be AGPL 2013-02-28 11:27:16 +01:00
MANIFEST.in add MANIFEST.in 2013-03-14 16:36:40 +01:00
README add README file with installation instructions 2013-03-14 16:20:50 +01:00
manage.py init: django-admin startproject univcloud 2013-02-28 11:26:59 +01:00
requirements.txt add importlib to requirements, necessary for Python < 2.7 2013-03-15 15:20:57 +01:00
setup.py infra: setup.py 2013-02-28 11:27:46 +01:00

README

Portal for Univcloud Services
=============================

Installation Quick Guide
------------------------

# Setup a virtualenv environment 
virtualenv venv/

# Enter the virtualenv
. venv/bin/activate

# Install required dependencies
pip install -r requirements.txt

# Create database
./manage.py syncdb

# Run test server
./manage.py runserver