Skip to content

marcosflp/process_manager

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

14 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Proce

A simple web application to manager processes.

Link of the running project: https://proce.cloudatlas.org/

Features

  • Django 2.1+
  • Development, Staging and Production settings with python-decouple
  • Get value insight and debug information while on Development with django-debug-toolbar.
  • Create fake data with model-mommy
  • Frontend using django templates + framework css with Semantic-ui + DOM manipulation with Jquery3
  • Color palette available at: /static/core/palette.pdf

Requirements

  • Python >= 3.6

How to configure and run the project

Remember to create a new virtualenv first

$ git clone git@github.com:marcosflp/process_manager.git
$ cd process_manager
$ pip install -r requirements.txt
Custom django settings

You must create a settings.ini file at the root of the project. To create this file, use the settings.ini.example template.

$ cp settings.ini.example settings.ini 

These settings(and their default values) are used on development, staging or production environments.

You don't need to change the the settings to run the project.

Default settings that you can change on the settings.ini file.

DEBUG=True
SECRET_KEY=4cn68iga94@**2x9vb1f*-104pe%%*-u-%%#%%1wh!r(+mjiza@y$
ENVIRONMENT_MODE='dev'  # 'dev' or 'prod' or 'test'

# Database
DATABASE_ENGINE=django.db.backends.sqlite3
DATABASE_HOST=localhost
DATABASE_NAME=process_manager.sqlite3
DATABASE_USER=
DATABASE_PASSWORD=

# Logging
ENABLE_LOGGING=True

# Debug Toolbar
ENABLE_DEBUG_TOOLBAR=False
Running migration and create a superuser to access the system
$ python manage.py migrate
$ python manage.py createsuperuser
Running the project
$ python manage.py runserver

Running the tests

$ python manage.py test

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published