Report of Summer Training in Workshop by B.Tech Students.
The report contains details of jobs done and tools used in each shop. Also 3D/2D models of jobs are provided too.
There are 7 shops in total :
- Blacksmithy Shop
- Foundry shop
- Fitting Shop
- Machine Shop
- Welding Shop
- Electric Shop
- Carpentry Shop
The code requires the below mentioned packages to run properly on your system:
- Git
- Pandoc
- Latex
- GPP
- Make
To install the above mentioned packages, run the command :
sudo apt-get install git-core pandoc gpp make texlive-full
You can simply make the pdf/html file of each shop seperately or a combined file of every shop, with just one command. The steps are as follows :
-
Open the terminal and clone the repository in your system with the command :
git clone https://github.com/GreatDevelopers/WorkshopTraining.git WorkShop
The above command downloads the repository in a directory named WorkShop within the directory in which you currently are.
-
Enter the WorkShop directory with the command :
cd WorkShop
-
Now, to produce the pdf and html of all the shops collectively, run the command :
make
-
To produce pdf/html of individual shop, run the command :
make <particular_shop.pdf/html>
For example, to make pdf of Electric Shop, you run :
make Electric.pdf
-
To produce the collective files as well the pdf and html for each shop individually, run the command :
make all
The output pdf can be found in build/pdf/ directory.
Similarly, the output html can be found in build/html/ directory.
-
To delete the files produced via above commands, run the command :
make clean
-
To find all the possible targets that you can build/run, run the command :
make targets