8000 GitHub - dorinam/Translation-Subtitling: 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.
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

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.

Notifications You must be signed in to change notification settings

dorinam/Translation-Subtitling

Repository files navigation

Translation and Subtitling Website

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.

Main Page

Prerequisites

This is what you need to do:

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. 

Author

Dorina Mihai (https://github.com/dorinam)

About

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.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published
0