Skip to main content

Resourse Planning System

Project description

ERP is resource planning system. This is very early version not for using.

Package is being developed in general for modeling and expected to be used as advanced task management solution at the current stage.

First beta will roll out late july and will contain all to work with enterprise material and technical base. After beta release work over finance component would be done.

Detailed documentation would appear in the “docs” directory with beta release.

Quick start

  1. Add package apps to your INSTALLED_APPS setting like this:

    INSTALLED_APPS = (
        ...
        'erp.directory',
        'erp.planning',
        'erp.enterprise',
        'erp.article',
        'rest_framework',
    )
  2. Include the polls URLconf in your project urls.py like this:

    url(r'^pm/', include('planning.urls')),
    url(r'^structure/', include('enterprise.urls')),
    url(r'^resource/$', planning.views.ResListView.as_view()),
    url(r'^accounts/login/$', 'django.contrib.auth.views.login'),
    url(r'^accounts/reg/$', 'enterprise.views.register'),
    url(r'^api-auth/', include('rest_framework.urls', namespace='rest_framework')),
  3. Add custom auth app to your project settings.py like this:

    from erp import enterprise
    AUTH_USER_MODEL = 'enterprise.CorpUser'
  4. Run python manage.py syncdb to create models.

  5. Visit http://127.0.0.1:8000/ to get started.

  6. Forgive me ^_^

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

ERP-0.20.tar.gz (112.6 kB view hashes)

Uploaded Source

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page