A Web Application designed to manage clients, tickets and bills, with interaction between provider and clients.
Go to file
Arthur Poulet a191f51e94 add Javascript to update the view_at after click 2015-07-18 16:39:40 +02:00
app add Javascript to update the view_at after click 2015-07-18 16:39:40 +02:00
bin Initial commit 2015-06-04 02:42:24 +02:00
config remove contact.last_contact, fix contact.view_at 2015-07-18 16:12:19 +02:00
db remove contact.last_contact, fix contact.view_at 2015-07-18 16:12:19 +02:00
lib Initial commit 2015-06-04 02:42:24 +02:00
log Initial commit 2015-06-04 02:42:24 +02:00
public Initial commit 2015-06-04 02:42:24 +02:00
test remove contact.last_contact, fix contact.view_at 2015-07-18 16:12:19 +02:00
vendor/assets Initial commit 2015-06-04 02:42:24 +02:00
.gitignore update gitignore 2015-07-16 21:52:26 +02:00
Gemfile remove erd, add rails-erd 2015-07-17 20:33:49 +02:00
Gemfile.lock remove erd, add rails-erd 2015-07-17 20:33:49 +02:00
License Add License file 2015-07-14 04:02:34 +02:00
README.md update README photo size 2015-07-17 06:27:44 +02:00
RailsMinidoc.md update readme and rails minidoc 2015-07-16 21:53:01 +02:00
Rakefile Initial commit 2015-06-04 02:42:24 +02:00
config.ru Initial commit 2015-06-04 02:42:24 +02:00
doc.sh prepare the Appli to deployment 2015-06-18 01:35:08 +02:00

README.md

What is this application

Morning Peak is a modern and OpenSource Web Application. It has been designed to manage clients, bills, and issues for little and medium compagnies.

Tickets Desktop view Dashboard Desktop view

Summary

  1. Installation
  2. Requirements
  3. Initialization
  4. First start
  5. Contributions
  6. Contributors
  7. How to contribute

1. Installation

1.1. Requirements

  • Ruby 2.0 or greater.
  • Postgresql server.

1.2. Initialization

In your shell, start by using this script:

cd MorningPeak/
gem install bundler
bundle install
cp config/database.yml.example config/database.yml
edit config/database.yml	# Configure your database connection first
rake db:create
rake db:migrate
rake db:seed				# will generate default data. Not on production ;)

1.3. First start

When you done with the configuration of the database (editing config/database.yml), you can run the server by the following command :

rails s		# "-b 0.0.0.0 -p 80" to test on internet :)

The server will be accessible via localhost

Default identifiers, generated in the seed:

user> login: admin@jerevedunemaison.com , password: jrdm2015

admin> login: admin@wir.com , password: wir2015

Checkout for rails minidoc for a resume of rails.

2. Contributions

2.1. Contributors

  • Arthur Poulet : main developper, upstream (poulet_a) Look at this cute face

2.2. How to contribute ?

You can contribute to this project by Merge Request on the gitlab repository here. The best pratices are to create short commits, and short Merge Requests. Respect the git commit nomage convention as possible with:

  • title
  • description
  • concerned issues with "#id"

We accept any kind of work : translations, bug fix, additionnal features, optimizations, documentation, etc.

Don't be afraid !