Skip to content

Latest commit

 

History

History
31 lines (23 loc) · 801 Bytes

Development.md

File metadata and controls

31 lines (23 loc) · 801 Bytes

Location Plan

MapFish Print configuration

The print-apps folder was moved to the project. /var/lib/tomcat7/webapps/print/print-apps is now a link to the project's print-apps folder.

sudo ln -s /home/jgr/WebstormProjects/MyDashBoard/print-apps /var/lib/tomcat7/webapps/print/print-apps

Snapshot

Cf git-how-to-get-a-snapshot-of-a-git-repository

http://gitready.com/

Repo moved to GitLab

rm -rf .git
git init
git config user.name "Jorge Gustavo Rocha"
git config user.email "[email protected]"
-- git remote add origin [email protected]:jgrocha/MyDashBoard.git
git remote add origin https://gitlab.com/jgrocha/MyDashBoard.git
-- vi .gitignore
git add .
git commit -m "Initial commit on gitlab"
git push -u origin master