d05a398ea8
Fixes gulp-sass crashes when saving sass files with syntactic errors |
||
---|---|---|
client | ||
server | ||
tests | ||
version_upgrades | ||
.gitignore | ||
.travis.yml | ||
LICENSE | ||
README.md |
README.md
OpenSupports is an open source ticket system built primarily with PHP and ReactJS. Please, visit our website for more information: http://www.opensupports.com/
Requirements
- PHP 5.6+
- MySQL 4.1+
Development
Here is a guide of how to set up the development environment in OpenSupports.
Getting up and running FRONT-END (client folder)
- Update:
sudo apt-get update
- Clone this repo:
git clone https://github.com/opensupports/opensupports.git
- Install node 4.x version:
sudo apt-get install curl
curl -sL https://deb.nodesource.com/setup_4.x | sudo -E bash -
sudo apt-get install -y nodejs
- Install npm:
sudo apt-get install npm
- Install gulp:
sudo npm install -g gulp
- Go to client:
cd opensupports/client
- Install dependencies:
npm install
- Rebuild node-sass:
npm rebuild node-sass
- Run:
gulp dev
- Go to the main app:
http://localhost:3000/app
or to the component demohttp://localhost:3000/demo
- Your browser will automatically be opened and directed to the browser-sync proxy address.
- Use
gulp dev --api
to disable fixtures and use the real PHP server api (it must be running at :8080).
Now that gulp dev
is running, the server is up as well and serving files from the /build
directory. Any changes in the /src
directory will be automatically processed by Gulp and the changes will be injected to any open browsers pointed at the proxy address.
OpenSupport uses by default the port 3000, but this port could already be used. If this is the case, you can modify this in the file: client/gulp/config.js
.
Production Task
Just as there is a gulp dev
task for development, there is also a gulp prod
task for putting the project into a production-ready state. This will run each of the tasks, while also adding the image minification task discussed above.
Reminder: Notice there is index.html
and index.php
. The first one searches the backend server where config.js
says it, the second one uses /api
to find the server. If you want to run OpenSupports in a single server, then use index.php
.
Frontend Unit Testing
- Do the steps described before.
- Install mocha:
sudo npm install -g mocha
- Run
npm test
to run the tests.
Getting up and running BACK-END (server folder)
- Clone this repo:
git clone https://github.com/opensupports/opensupports.git
- Install PHP 5.6
- Create MySQL Database
- Install composer
- Go to the server folder:
cd opensupports/server
- Run:
composer install
- Run the server with:
php -S localhost:8080
Create MySQL Database
-
Install mysql-server:
Ubuntu
sudo apt-get install mysql-server
Cent OS
sudo yum install mysql-server
/etc/init.d/mysqld start
-
Access the MySQL shell:
mysql -u root
-
Create a new database:
CREATE DATABASE development;
-
Run the MySQL server:
sudo /etc/init.d/mysql start
BACKEND API RUBY TESTING
- Install Ruby:
sudo apt-get install ruby-full
- Install MySQL dev dependencies:
sudo apt-get install libmysqlclient-dev libmysqlclient16 ruby-dev
- Install bundle:
sudo gem install bundler
- Go to tests folder:
cd opensupports/tests
- Install project dependencies:
bundle install
Tests can run by using executing therun-tests.sh
file.
BACKEND FAKE SMTP SERVER
If you're doing development, you can use a FakeSMTP server to see the mails that are being sent.
-
Install Java if you don't have it yet:
sudo apt-get install default-jre
sudo apt-get install default-jdk
-
Extract the file from the zip and run it:
java -jar fakeSMTP-2.0.jar
-
Set the port to 7070 and start the SMTP server.
-
Every time the application sends an email, it will be reflected there.