Coder Social home page Coder Social logo

johnfelipe / egov Goto Github PK

View Code? Open in Web Editor NEW

This project forked from egovernments/egov-smartcity-suite

0.0 3.0 0.0 317.52 MB

eGov SmartCity eGovernance suite of products aim to improve the internal efficiency, transparency, accountability and the service delivery of Municipal Governments. The solution is freely available under the license terms as mentioned below.

Home Page: http://www.egovernments.org

License: Other

Shell 0.01% Java 65.87% JavaScript 25.26% HTML 5.07% CSS 2.38% PLSQL 0.15% SQLPL 0.06% PLpgSQL 1.16% Groovy 0.03%

egov's Introduction

Join the chat at https://gitter.im/egovernments/eGov

Build Status

eGovernments Foundation transforms urban governance with the use of scalable and replicable technology solutions that enable efficient and effective municipal operations, better decision making, and contact-less urban service delivery.

Our comprehensive software products enable Governments to put their resources to efficient use by minimising overheads. We also help bring in transparency, accountability and citizen centricity in the delivery of Government services.

eGovernments Foundation has been in the forefront of implementing eGovernance solutions since 2003. Our products have been serving over 275 ULBs across the country. Our time tested products have impacted the ULBs in a large way. We have also been involved in several eGovernance initiatives in the country.

Our primary business motivator is to increase the footprint of eGovernance across the country and help adoption in as many ULBs as possible. Going opensource with our products is a measure in this direction. It also gives us the ability to tap into the immense talent pool in India for strengthening and improving our cities. Open source also blends well with our ethical fabric of being open and transparent in our business.

Issue Tracking

Report issues via the eGov Opensource JIRA.

License

The eGov suit is released under version 3.0 of the GPL.

Powered By

          

User Guide

This section contains steps that are involved in build and deploy the application. FAQ related to various deployment and development issues are discussed here

Prerequisites

Database Setup

Create a database and user in postgres

Elastic Search Setup

Elastic seach server properties needs to be configured in elasticsearch.yml under <ELASTICSEARCH_INSTALL_DIR>/config

## Your local elasticsearch clustername, DO NOT use default clustername
cluster.name: elasticsearch-<username>
## This is the default port
transport.tcp.port: 9300

NB: <username> user name of the loggedin system, enter the below command in terminal to find the username.

$ id -un

Building Source

  1. Clone the eGov repository (development is done on the develop branch.
$ mkdir egovgithub
$ cd egovgithub
$ git clone https://github.com/egovernments/eGov.git
$ git checkout develop
  1. Change directory to <CLONED_REPO_DIR>/egov/egov-config/src/main/resources/config/ and create a file called egov-erp-<username>.properties and enter the following values based on your environment config.
##comma separated list of host names 
elasticsearch.hosts=localhost
elasticsearch.port=9300
elasticsearch.cluster.name=elasticsearch-<username>

##Enables or disabled email sending, this is disabled by default
mail.enabled=false
mail.port=465
mail.host=smtp.gmail.com
mail.protocol=smtps
mail.sender.username[email protected]
mail.sender.password=12345

##Enables or disables SMS sending, this is disabled by default
sms.enabled=false
sms.provider.url=http://some.sms.provider.url
sms.sender.username=sms_username
sms.sender.password=sms_user_password
sms.sender=sms_sender_id

#Following are the http sms request parameter names, replace with sms provider specific request param name.
sms.sender.req.param.name=senderid
sms.sender.username.req.param.name=username
sms.sender.password.req.param.name=password
sms.destination.mobile.req.param.name=mobileno
sms.message.req.param.name=content

#In addition to the above standard parameters, any additional static parameters can be added here with 
#respective key=value, delimit with &
sms.extra.req.params=foo=bar

#SMS response error codes, replace with sms provider specific error code
sms.error.codes=401,403,404,405,406,407,408,409,410,411,412,413,414

#If sms gategway response doesn't contain error message, to log error messages for the above code then add error message entry like following
#<sms_errorcode>=<sms_error_message>
#eg:401=Invalid Username or Password

One can override any default settings available in /egov/egov-egi/src/main/resources/config/application-config.properties by adding an entry in egov-erp-<username>.properties. 3. Change directory back to <CLONED_REPO_DIR>/egov 4. Run the following commands, this will cleans, compiles, tests, migrates database and generates ear artifact along with jars and wars appropriately

mvn clean package -s settings.xml -Ddb.user=<db_username> -Ddb.password=<db_password> -Ddb.driver=org.postgresql.Driver -Ddb.url=<jdbc_url>

Redis Server Setup

By default eGov suit uses embedded redis server (work only in Linux & OSx), to make eGov suit works in Windows OS or if you want to run redis server as standalone then follow the installation steps below.

  1. Installing redis server on Linux
sudo apt-get install redis-server
  1. Installing redis server on Windows :- There is no official installable avialable for Windows OS. To install redis on Windows OS, follow the instruction given in https://chocolatey.org/packages/redis-64

  2. Once installed, set the below property in egov-erp-override.properties or egov-erp-<username>.properties.

redis.enable.embedded=false ## true by default

to control the redis server host and port use the following property values (only required if installed with non default).

## Replace <your_redis_server_host> with your redis host, localhost by default
redis.host.name=<your_redis_server_host>
## Replace <your_redis_server_port> with your redis port, 6379 by default
redis.host.port=<your_redis_server_port>

Deploying Application

Configuring JBoss Wildfly
  1. Download and unzip the customized JBoss Wildfly Server from here. This server contains some additional jars that are required for the ERP.
  2. In case properties needs to be overridden, edit the below file (This is only required if egov-erp-<username>.properties is not present)
<JBOSS_HOME>/modules/system/layers/base/

org
└── egov
  └── settings
    └── main
        ├── config
        │   └── egov-erp-override.properties
        └── module.xml
  1. Update settings in standalone.xml under <JBOSS_HOME>/standalone/configuration
  • Check Datasource setting is in sync with your database details.
<connection-url>jdbc:postgresql://localhost:5432/<YOUR_DB_NAME></connection-url>
<security>
  <user-name><YOUR_DB_USER_NAME></user-name>
  <password><YOUR_DB_USER_PASSWORD></password
</security>
  • Check HTTP port configuration is correct in
<socket-binding name="http" port="${jboss.http.port:8080}"/>
  1. Change directory back to <CLONED_REPO_DIR>/egov/dev-utils/deployment/ and run the below command
 $  chmod +x deploy.sh
$ ./deploy.sh

Alternatively this can be done manually by following the below steps.

  • Copy the generated exploded ear <CLONED_REPO_DIR>/egov/egov-ear/target/egov-ear-<VERSION>.ear in to your JBoss deployment folder <JBOSS_HOME>/standalone/deployments
  • Create or touch a file named egov-ear-<VERSION>.ear.dodeploy to make sure JBoss picks it up for auto deployment
  1. Start the wildfly server by executing the below command
 $ cd <JBOSS_HOME>/bin/
 $ nohup ./standalone.sh -Dspring.profiles.active=production -b 0.0.0.0 &

In Mac OS, it may also required to specify -Djboss.modules.system.pkgs=org.jboss.byteman

-b 0.0.0.0 only required if application accessed using IP address or domain name.

  1. Monitor the logs and in case of successful deployment, just hit http://localhost:<YOUR_HTTP_PORT>/egi in your favorite browser.
  2. Login using username as egovernments and password demo

Accessing the application using IP address and domain name

This section is to be referred only if you want the application to run using any ip address or domain name.

1. To access the application using IP address:
  • Have an entry in eg_city table in database with an IP address of the machine where application server is running (for ex: domainurl="172.16.2.164") to access application using IP address.
  • Access the application using an url http://172.16.2.164:8080/egi/ where 172.16.2.164 is the IP and 8080 is the port of the machine where application server is running.
2. To access the application using domain name:
  • Have an entry in eg_city table in database with domain name (for ex: domainurl= "www.egoverpphoenix.org") to access application using domain name.
  • Add the entry in hosts file of your system with details as 172.16.2.164 www.egoverpphoenix.org (This needs to be done both in server machine as well as the machines in which the application needs to be accessed since this is not a public domain).
  • Access the application using an url http://www.egoverpphoenix.org:8080/egi/ where www.egoverpphoenix.org is the domain name and 8080 is the port of the machine where application server is running.

Always start the wildfly server with the below command to access the application using IP address or domain name.

 nohup ./standalone.sh -b 0.0.0.0 -Dspring.profiles.active=production &

Developer Guide

This section gives more details regarding developing and contributing to eGov suit.

Repository Structure

egov - folder contains all the source code of eGov opensource projects

Check out sources

git clone [email protected]:egovernments/eGov.git or git clone https://github.com/egovernments/eGov.git

Prerequisites

Note: Please check in eGov Tools Repository for any of the above software installables before downloading from internet.

1. Eclipse Deployment
  • Install Eclipse Mars Eclipse Mars
  • Import the cloned git repo using maven Import Existing Project.
  • Install Jboss Tools and configure Wildfly Server.
  • Since jasperreport related jar's are not available in maven central, we have to tell eclipse to find jar's in alternative place for that navigate to Windows -> Preference -> Maven -> User Settings -> Browse Global Settings and point settings.xml available under egov-erp/
  • Double click on wildfly10.x --> open launch configurations --> edit VM arguments and add string '-Dspring.profiles.active=production' at the end of existing VM arguments.
  • Now add your EAR project into the configured Wildfly server.
  • Start Wildfly in debug mode, this will enable hot deployment.
2. Intellij Deployment
  • Install Intellij
  • Open project
  • In project settings set JDK to 1.8
  • Add a run configuration for JBoss and point the JBOSS home to the wildfly unzipped folder
  • Open the Jboss run configuration and edit VM arguments and add string '-Dspring.profiles.active=production' at the end of existing VM arguments.
  • Run
3. Database Migration Procedure
  • Any new sql files created should be added under directory <CLONED_REPO_DIR>/egov/egov-<javaproject>/src/main/resources/db/migration
  • Core product DDL and DML should be added under <CLONED_REPO_DIR>/egov/egov-<javaproject>/src/main/resources/db/migration/main
  • Core product sample data DML should be added under <CLONED_REPO_DIR>/egov/egov-<javaproject>/src/main/resources/db/migration/sample
  • All sql scripts should be named with following format.
  • Format V<timestamp-in-YYYYMMDDHHMMSS-format>__<module-name>_<description>.sql
  • DB migration will automatically happen when application server starts, incase required while maven build use the above given maven command.
Migration file name sample
V20150918161507__egi_initial_data.sql

For more details refer Flyway

Note: This system is supported

OS:-

  • Linux (Recommended)
  • Mac
  • Windows (If Redis server standalone installed).

Browser:-

  • Chrome (Recommended)
  • Firefox
  • Internet Explorer

egov's People

Contributors

sreekanthsnair avatar roopabagi avatar parvatihiremath avatar pradeepkumarcm-egov avatar iffath-egov avatar katararishi-egov avatar sathishp-egov avatar subhash-egov avatar manasaniranjan-egov avatar manikanta-pt avatar malathimunesh avatar kavyashivanna avatar riteshchikatwar avatar shwethadc-egov avatar ramakrishnaippili-egov avatar elzanmathew-egov avatar dushyantpareek-egov avatar vinothrallapalli-egov avatar sanjeev-egov avatar dineshsdev1 avatar vaibhavegov avatar nagalingamp avatar manojpkulakarni avatar seemanayak-egov avatar pratikjaiswal avatar katta avatar ranjitmindteck avatar nayeemtp avatar mohammadrafeek-egov avatar priyankarani-egov avatar

Watchers

felipe avatar James Cloos avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.