Standalone web client for Scratch
Find a file
Matthew Taylor cbde14e626 Merge pull request #1186 from chrisgarrity/tx-import
New scripts to generate translations from Transifex
2017-02-16 08:15:12 -05:00
.tx New scripts to generate translations from Transifex 2017-02-15 22:51:15 -05:00
bin New scripts to generate translations from Transifex 2017-02-15 22:51:15 -05:00
dev-server Hide components route in production 2016-05-24 17:15:03 -04:00
src Merge pull request #1184 from mewtaylor/issue/gh-1086 2017-02-16 07:56:21 -05:00
static Add 2017 conference site 2017-02-15 08:35:10 -05:00
test New scripts to generate translations from Transifex 2017-02-15 22:51:15 -05:00
.eslintignore Don't lint temporary locale .json files 2016-06-21 15:00:05 -04:00
.eslintrc Add ignoreUrls to max-len lint rules 2016-11-29 15:12:55 -05:00
.gitignore Tx import (#1143) 2017-01-18 12:57:14 -05:00
.sass-lint.yml Upgrade and quiet sass-linter 2016-03-23 18:34:54 -04:00
.travis.yml Set up SCRATCH_ENV for staging 2016-07-28 13:59:23 -04:00
CONTRIBUTING.md Revise focus of CONTRIBUTING, README 2016-01-28 13:07:58 -05:00
custom-locales.json Add Abkhaz to custom locale list 2016-08-22 15:55:43 -04:00
languages.json New scripts to generate translations from Transifex 2017-02-15 22:51:15 -05:00
LICENSE Update license and add trademark notice 2016-01-31 13:07:21 -05:00
Makefile New scripts to generate translations from Transifex 2017-02-15 22:51:15 -05:00
package.json New scripts to generate translations from Transifex 2017-02-15 22:51:15 -05:00
README.md Add coverage and dependency badges to README 2016-10-31 09:15:47 -04:00
requirements.txt Use s3cmd to sync with S3 2016-04-29 15:52:15 -04:00
TRADEMARK Update license and add trademark notice 2016-01-31 13:07:21 -05:00
webpack.config.js Merge pull request #911 from rschamp/feature/html-webpack-plugin 2016-09-09 15:52:52 -04:00

scratch-www

Standalone web client for Scratch

Build Status Coverage Status dependencies Status devDependencies Status

Where am I?

Physically? No idea.

Digitally? Youre at Scratchs open source web client!

Were working to update the Scratch website to use a new codebase, contained in this repository.

Were currently building Scratch using React and SCSS. Here are some resources to help you get acquainted with how were working on the Scratch codebase:

Before Getting Started

  • Make sure you have node (v4.2 or higher) and npm installed

To Build

npm install
npm run build

Warnings during npm install

These warnings can be safely ignored:

npm WARN react-modal@0.6.1 requires a peer of react@^0.14.0 but none was installed.
npm WARN react-redux@4.4.0 requires a peer of react@^0.14.0 but none was installed.
npm WARN react-redux@4.4.0 requires a peer of redux@^2.0.0 || ^3.0.0 but none was installed.
npm WARN react-addons-test-utils@0.14.7 requires a peer of react@^0.14.7 but none was installed.
npm WARN react-dom@0.14.8 requires a peer of react@^0.14.8 but none was installed.

These currently exist in static/js/lib

To Run

npm start

During development, npm start watches any update you make to files in either ./static or ./src and triggers a rebuild of the project. In development the build is stored in memory, and not served from the ./build directory.

When running npm start, here are some important log messages to keep an eye out for:

  • webpack: bundle is now VALID. the bundle has been loaded into memory and is now viewable in the browser. This will show up both once npm start has completed its setup, and also once updates you make to files have been re-compiled for viewing in the browser.
  • webpack: bundle is now INVALID. if you see this, then it means you have made updates to files that are still being compiled for browser viewing. Pages will still be viewable, but they will not see any updates you made yet.

Once running, open http://localhost:8333 in your browser. If you wish to have the server reload automatically, you can install either nodemon or forever.

To stop

Use ^C to stop the node process npm start starts.

Configuration

npm start can be configured with the following environment variables

Variable Default Description
API_HOST https://api.scratch.mit.edu Hostname for API requests
SENTRY_DSN '' DSN for Sentry
FALLBACK '' Pass-through location for old site
GA_TRACKER '' Where to log Google Analytics data
NODE_ENV null If not production, app acts like development
PORT 8333 Port for devserver (http://localhost:XXXX)

NOTE: Because by default API_HOST=https://api.scratch.mit.edu, please be aware that, by default, you will be seeing and interacting with real data on the Scratch website.

To Test

npm test

To Deploy

npm install
virtualenv ENV
. ENV/bin/activate
pip install -r requirements.txt
make deploy
Variable Default Description
FASTLY_SERVICE_ID '' Fastly service ID for bin/configure-fastly.js
FASTLY_API_KEY '' Fastly API key for bin/configure-fastly.js
FASTLY_ACTIVATE_CHANGES false Activate changes and purge all after configuring
AWS_ACCESS_KEY_ID '' AWS access key id for S3
AWS_SECRET_ACCESS_KEY '' AWS secret access key for S3
S3_BUCKET_NAME '' S3 bucket name to deploy into

Current issues with the development

We're currently in the process of transitioning into this web client from Scratch's existing structure. As we transition, there are going to be some issues along the way that relate to how this client needs to interact with the existing infrastructure to work properly in production.

On top of migrating to using this as our web client, Scratch is also transitioning into using a new API backend, Scratch REST API. As that is also currently in development and incomplete, we are set up to fall back to using existing Scratch endpoints if an API endpoint does not exist which is where the FALLBACK comes in.

Most of the issues we have currently revolve around the use of FALLBACK. This variable is used to specify what url to fall back onto should a request fail within the context of this webclient, or when using the API_HOST. If not specified in the process, it will not be used, and any request that is not made through the web client or the API will be unreachable.

Setting FALLBACK=https://scratch.mit.edu allows the web client to retrieve data from the Scratch website in your development environment. However, because of security concerns, trying to send data to Scratch through your development environment won't work. This means the following things will be broken for the time being:

  • Login on the splash page (In the process of being fixed)
  • Some update attempts to production data made through a development version of the web client

Additionally, if you set FALLBACK=https://scratch.mit.edu, be aware that clicking on links to parts of the website not yet migrated over (currently such as Explore, Discuss, Profile, etc.) will take you to the Scratch website itself.