Skylsmoi 6cb697acc6 [https://github.com/tracim/tracim/issues/801] btn to create content or workspace is now disabled if name is empty преди 5 години
backend Merge pull request #26 from tracim/feature/750_do_notify_in_roles_endpoints преди 5 години
frontend [https://github.com/tracim/tracim/issues/816] fixed url for btn create content in dashboard + removed comment from content type list in create content dropdown преди 5 години
frontend_app_admin_workspace_user [https://github.com/tracim/tracim/issues/779] added integrated version of admin user преди 5 години
frontend_app_html-document https://github.com/tracim/tracim/issues/748, Translation of : adminWorkspacePage, HomePage, app Html, Timeline, and some components преди 5 години
frontend_app_thread [https://github.com/tracim/tracim/issues/641] apps htmldoc and thread now mark content as read upon loading data преди 5 години
frontend_app_workspace [https://github.com/tracim/tracim/issues/815] fixed workspace icon преди 5 години
frontend_lib [https://github.com/tracim/tracim/issues/801] btn to create content or workspace is now disabled if name is empty преди 5 години
functionnal_tests fix for cypress script преди 5 години
.gitignore Merge branch 'develop' into feature/638_refactor_applications+support_for_color.json преди 5 години
.travis.yml travis: separate install requires from testing requires преди 5 години
README.md fix for cypress преди 5 години
README_traduction.md Update README_traduction.md преди 5 години
backend_lib.sh autogenerate color.json file in backend setup script преди 5 години
bash_library.sh fix for script install cypress преди 5 години
build_full_frontend.sh remove git pull from script преди 5 години
color.json.sample color without spectra dep преди 5 години
i18next.option.js [https://github.com/tracim/tracim/issues/637] added translation mecanism on all frontend folder преди 5 години
install_cypress.sh fix script with dep cypress преди 5 години
install_frontend_dependencies.sh [https://github.com/tracim/tracim/issues/825] added config js file for environment (eg. apiUrl) преди 5 години
setup_default_backend.sh update backend setup script преди 5 години

README.md

develop branch status: Build Status Coverage Status Scrutinizer Code Quality

Install Tracim on your server

Following the installation documentation below, you'll be able to run your own instance on your server.


Installation

Get the source

Get the sources from GitHub (you need git):

git clone https://github.com/tracim/tracim_v2.git
cd tracim_v2/

Install backend

Option 1: Install backend manually

see Backend README

Option2: Install backend: Automated script for easy setup

This script run backend with simple default conf: development.ini conf file, use default config file, sqlite database, etc...

./setup_default_backend.sh

For each conf file missing, this script will generated them from default conf. If sqlite default database is missing, script will generate it. This script is also able to serve for update. If you want to update a script generated tracim install, you can just update source code with git pull and rerun the same script to update database model, system deps and python deps.

for more information about configuring tracim_backend, see Backend README for more information about configuration file, see development.ini.sample documentation and Backend setting file doc.

Install frontend: Automated Script for easy setup

./install_frontend_dependencies.sh
./build_full_frontend.sh

Running Tracim using pserve

cd backend/
source env/bin/activate
pserve development.ini

You can now enter the application at http://127.0.0.1:6543 and login with admin user:

  • user: admin@admin.admin
  • password: admin@admin.admin

Running tests with cypress


Installation of cypress: Automated script for easy setup

This script check if nodejs is installed (npm is necessary to install Cypress), if file package.json and cypress.json exist in 'functionnal_tests' folder. if not the script install necessary file and install Cypress and his dependency's.

./install_cypress.sh

Run tests with command line

This command run all test present in 'cypress_test' folder.

cd functionnal_tests/
./node_modules/.bin/cypress run

Run tests with cypressgui

Open Cypress with graphical interface. You can show test running directly in web interface.

cd functionnal_tests/
./node_modules/.bin/cypress open