Skip to content

b7s9/coloring-book

Repository files navigation

Coloring Book (blue team)

Description of Project

In this project you can

  • select a page to color from a gallery of options
  • use point and click controls to color in shapes of a given image
  • undo/redo coloring steps

Installation Instructions

Install dependencies. Before running any of the following scripts, you must be in the root directory of this project.

cd $this_project_directory
npm install

Build and Serve project on localhost

npm start

To skip the build and just serve on localhost

npm run serve

The project will then be available on http://localhost:8080. (it should automatically open in your default browser)

To develop locally,

npm start
gulp watch

changes to development files will be copied to the distribution folder on save, but assets will need to be re-applied if updated. To copy assets to the dist/ directory, run

# all assets
sh bin/static.sh -a
# or
npm run assets

# fonts
sh bin/static.sh -f

# images
sh bin/static.sh -i

# svg
sh bin/static.sh -s

Project Requirements

Full requirements doc on Phil's repo

Must Haves

  • Color Picker
  • Image library (multiple coloring pages)
  • Attribution for each image
  • Works on mobile devices, viewports ranging 360 – 1440px
  • Built with task runners, bundlers, scripts, continuous integration, git hooks etc.
  • Built with Git
  • Runs on live production server

Nice to Haves

  • Full spectrum color picker
  • Undo/Redo steps feature
  • Automated deployment script
  • Export svg/png/jpg
  • Save/Load
  • Sharable link
  • Multi-user live editing (google docs)
  • User Account logins