Git Product home page Git Product logo

tech-hub's Introduction

Tech Hub

Tech Hub is an issue tracking system. Similar to JIRA, Bugzilla and many others, it supports ticketing & issue tracking on various projects.
Demo: https://tech-hub.herokuapp.com/

Features include:

  • issues are tracked under projects
  • unlimited projects
  • unlimited issues per project
  • admin console
  • user statistics
  • analytics

Install Dependencies

  1. Download Ant: Apache Ant
    On Mac: How to Apache Ant on Mac OS X
  2. Download TomEE: Apache TomEE Webprofile
    On Mac: brew install tomee-webprofile
  3. Download PostgreSQL: PostgreSQL
    On Mac: Install Postgres.app
  4. Configure your $PATH to include PostgreSQL command line tools:
sudo mkdir -p /etc/paths.d &&
echo /Applications/Postgres.app/Contents/Versions/latest/bin | sudo tee /etc/paths.d/postgresapp

Then: restart your terminal.

  1. Download database driver jar into the tomee/lib folder.
  2. Add datasource to tomee/conf/tomee.xml:
<?xml version="1.0" encoding="UTF-8"?>
<tomee>  
  <Resource id="jdbc/ManchesterDS_Postgre" type="javax.sql.DataSource">
    jdbcDriver org.postgresql.Driver
    jdbcUrl jdbc:postgresql://localhost:5432/manchester
    userName man
    password man
  </Resource>
</tomee>

Build Application

  1. Create database:
psql postgres
ALTER DATABASE peter RENAME TO manchester;
  1. Seed database:
cd tech-hub/ManchesterEJB/ejbModule/META-INF/postgre/
psql manchester
\i Postgre_Table.ddl
\i Postgre_Sequence.ddl
\i Postgre_Data.ddl
  1. Create database user:
psql manchester
CREATE USER man WITH ENCRYPTED PASSWORD 'man';
GRANT ALL PRIVILEGES ON DATABASE manchester TO man;
  1. Run: ant -f build/build.xml
  2. Deploy app by creating a soft link to it:
    ln -s $(pwd)/ManchesterWAR/WebContent $CATALINA_HOME/webapps/tech-hub

Useful Tips

  1. [TODO]

Creator

Peter Szocs, Tech Lead at Bloomberg LP.

tech-hub's People

Contributors

pitanyc avatar gepesz avatar pszocs avatar

Watchers

 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.