Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
C
clowdflows
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
Operations
Operations
Incidents
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Alain Shakour
clowdflows
Commits
d9b6d75e
Commit
d9b6d75e
authored
Dec 18, 2013
by
DarkoA
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Modified the git clone URL in the README.md file, to reflect the namespace changes.
parent
d027073e
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
64 additions
and
64 deletions
+64
-64
README.md
README.md
+64
-64
No files found.
README.md
View file @
d9b6d75e
# Mothra Django Project #
## Prerequisites ##
-
python >= 2.5
-
pip
-
virtualenv/wrapper (optional)
## Installation ##
### Creating the environment ###
Create a virtual python environment for the project.
If you're not using virtualenv or virtualenvwrapper you may skip this step.
#### For virtualenvwrapper ####
```
bash
mkvirtualenv
--no-site-packages
mothra-env
```
#### For virtualenv ####
```
bash
virtualenv
--no-site-packages
mothra-env
cd
mothra-env
source
bin/activate
```
### Clone the code ###
Obtain the url to your git repository.
```
bash
git clone git@source.ijs.si:
mothra.git mothra
```
### Install requirements ###
```
bash
cd
mothra
pip
install
-r
requirements.txt
```
### Configure project ###
```
bash
cp
mothra/__local_settings.py mothra/local_settings.py
vi mothra/local_settings.py
```
### Sync database ###
```
bash
python manage.py syncdb
```
### Migrate database ###
```
bash
python manage.py migrate
```
## Running ##
```
bash
python manage.py runserver
```
## Running with debugger ##
```
bash
python manage.py runserver_plus
```
Open browser to http://127.0.0.1:8000
# Mothra Django Project #
## Prerequisites ##
-
python >= 2.5
-
pip
-
virtualenv/wrapper (optional)
## Installation ##
### Creating the environment ###
Create a virtual python environment for the project.
If you're not using virtualenv or virtualenvwrapper you may skip this step.
#### For virtualenvwrapper ####
```
bash
mkvirtualenv
--no-site-packages
mothra-env
```
#### For virtualenv ####
```
bash
virtualenv
--no-site-packages
mothra-env
cd
mothra-env
source
bin/activate
```
### Clone the code ###
Obtain the url to your git repository.
```
bash
git clone git@source.ijs.si:
clowdflowsinterfaces/mothra.git mothra
```
### Install requirements ###
```
bash
cd
mothra
pip
install
-r
requirements.txt
```
### Configure project ###
```
bash
cp
mothra/__local_settings.py mothra/local_settings.py
vi mothra/local_settings.py
```
### Sync database ###
```
bash
python manage.py syncdb
```
### Migrate database ###
```
bash
python manage.py migrate
```
## Running ##
```
bash
python manage.py runserver
```
## Running with debugger ##
```
bash
python manage.py runserver_plus
```
Open browser to http://127.0.0.1:8000
\ No newline at end of file
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment