williamthorsen / theme-park

CM1040 Theme Park
0 stars 0 forks source link

CM1040 Theme Park Assignment

Assignments

Week Due date Topic Assignment
4 May 2nd Wireframes Peer-graded assignment, part 1
6 May 16th HTML Markup Peer-graded assignment, part 2
8 May 30th Appearance CSS Peer-graded assignment, part 3
10 Jun 13th Layout CSS Peer-graded assignment, part 4
10 Jun 27th Final version Graded assignment

Documentation

Development

All commands should be run from the project root.

Install development tools

To install the development tools, run:

yarn install

View the site

To view the website in a browser, run:

yarn start

If your browser doesn't open automatically, start your browser and visit http://localhost:4040 or http://127.0.0.1:4040.

Check code quality

Check CSS, HTML, and JavaScript:

yarn run lint

Or check them individually:

yarn run lint:css
yarn run lint:html
yarn run lint:js

Add :fix to any of the above commands to automatically fix some style issues. Example:

yarn run lint:css:fix

Resources

CM1040 module resources (world-class/REPL)