This is a translation and subtitling portfolio website created and maintained by Dorina Mihai. It is based on Bootstrap and uses a mix of HTML 5, CSS 3, Font Awesome, Javascript, JQuery, Popper and PHP. I also used Node.js and Git.
1. You can use any text editor you want. I would recommend Visual Studio Code.
2. You can use any browser you want. I recommend Firefox.
3. You must be familiar with the command line shell.
3. Install Git on your computer and set up some of the global configurations. From the cmd window on your computer you can:
· Check that Git is installed and available to use from the command line with:
$ git --version
· Configure your user name:
$ git config --global user.name "Name"
· Configure your email:
$ git config --global user.email <your email>
· Check default configuration:
$ git config --list
4. Set up an online Git repository for your local repository. You can do it here at GitHub.
· Link your local repository to your online Git repository:
$ git remote add origin <repository URL>
· Clone an online repository to your computer:
$ git clone <repository URL>
· Push the commits to the online repository:
$ git push -u origin master
5. Install and setup Node.js and NPM (node package manager).
· Verify the installation:
$ node -v
$ npm -v
6. Set up a package.json file and install NPM module lite-server to run a Node.js based web server.
· You can use the following:
$ npm install lite-server --save-dev
$ npm start
7. Set up .gitignore and add node_modules to it.
8. Install Bootstrap 4, JQuery and Popper.js.
· You can use the following:
$ npm install
$ npm install bootstrap@4.1.1 --save
· You can do the same with JQuery and Popper.js.
9. Start the lite server by typing 'npm start' to load the 'index.html' file.
Dorina Mihai (https://github.com/dorinam)