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 cc849cbd52 update to Django 1.5
(also, remove importlib as it's included in Python 2.7+)
2013-03-22 16:26:15 +01:00
univcloud weather: add proper support for locations (#2606) 2013-03-21 09:52:09 +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 update to Django 1.5 2013-03-22 16:26:15 +01:00
setup.py update to Django 1.5 2013-03-22 16:26:15 +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