Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,19 +6,19 @@ Fun Bus wants you to make their site more interactive. They are relying on you t

## Git Setup

* [ ] Create a forked copy of this project.
* [ ] Clone your OWN version of the repository.
* [ ] Implement the project on the main branch, committing changes regularly.
* [ ] Push commits: `git push origin main`.
* [ x] Create a forked copy of this project.
* [x ] Clone your OWN version of the repository.
* [ x] Implement the project on the main branch, committing changes regularly.
* [ x] Push commits: `git push origin main`.

## Running the project

This project uses [Webpack and Babel](https://bloomtech-1.wistia.com/medias/bhi99dwr2x). Inside `src/index.html` you will notice there is no `script` tag linking the JavaScript, nor a `link` tag linking the styles. When the project starts, Webpack transcompiles the LESS into CSS, and injects the JavaScript and the styles into the HTML.

Do not **move or rename any files** in this project. The website's source files live inside the `src` folder. Do not make changes to any files outside of the `src` folder, unless it's new dependecies declared in the `package.json` due to installing NPM libraries (E.G. `npm i lodash`).

* [ ] Run `npm install` to download the project's dependencies.
* [ ] Run `npm start` to launch the website on `http://localhost:3000`.
* [x ] Run `npm install` to download the project's dependencies.
* [x ] Run `npm start` to launch the website on `http://localhost:3000`.

## MVP

Expand Down
Loading