Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

how to package a django project?

How can i package a project so that i can just call some function that runs the project?

I know how to package a django app, but my question is how to package a django project.

Currently i have my project on an internal pypi server and can pull it down using:

pip install [project]

but then to use it i have to go into my site-packages and then the package just so i can run

./manage.py ....

Or am i just better off checking out the project and pip installing the apps?

like image 658
Calum Avatar asked Jan 31 '13 03:01

Calum


1 Answers

One way, is to create a package using your distros package management system. At my shop, we use Ubuntu's aptitude. So package our software as a .deb using CMake.

like image 84
Gourneau Avatar answered Sep 28 '22 00:09

Gourneau