The 2020 Next.js rewrite, now being merged into impress!
Find a file
Matchu 571949b066 Increase timeout in archive SQL queries
One problem I run into with the archive task is that sometimes the queries time out? My hunch is that maybe some of the assets have like, weirdly big manifest files that are being transferred as surprisingly big text files?

Anyway, I'm increasing the timeout to 20s, which is big, but big feels good for a script that doesn't run often and where failing is not great news!

I'm also idly considering whether I wanna finally put in the work to do a bulk S3 uploader sometime, because the current version that iterates over multiple `aws s3 cp` calls is just real slow, I think because it establishes a new connection each time, and that operation is maybe surprisingly expensive? And the CLI doesn't have a way to do multiple uploads any more precisely than "sync up this whole folder", which is slow when the folder contains a lot of stuff you _know_ you don't want to head up there.
2023-06-12 10:56:40 -07:00
.github/workflows Fix GitHub Action for Sentry, attempt 6 2021-01-16 11:27:26 -08:00
.husky Script to set up dev db with public DTI data 2022-11-13 07:03:44 -08:00
.vscode update chakra imports 2020-12-25 09:08:33 -08:00
deploy Update SSH key for laptop 2022-12-22 18:47:11 -08:00
pages Update "State of DTI" message copy & URL 2023-02-04 23:48:55 -08:00
public [WIP] Run cra-to-next codemod to be on Nextjs 2021-11-01 21:49:23 -07:00
scripts Increase timeout in archive SQL queries 2023-06-12 10:56:40 -07:00
src Merge branch 'state-of-dti-2022' into main 2023-03-23 21:54:53 -07:00
.eslintrc.json [WIP] Fix eslint for Next.js 2021-11-01 22:07:46 -07:00
.gitattributes Script to set up dev db with public DTI data 2022-11-13 07:03:44 -08:00
.gitignore [WIP] Run cra-to-next codemod to be on Nextjs 2021-11-01 21:49:23 -07:00
LICENSE.md New terms of use page 2022-09-25 06:00:59 -07:00
lint-staged.config.js [WIP] Fix eslint for Next.js 2021-11-01 22:07:46 -07:00
next-env.d.ts [WIP] Run cra-to-next codemod to be on Nextjs 2021-11-01 21:49:23 -07:00
next.config.js Add /api/assetImageRedirect 2022-10-11 12:21:14 -07:00
package.json Oops, remove leftover debug code 2022-12-22 18:44:47 -08:00
README.md Add installation guide to README 2022-11-13 09:09:36 -08:00
tsconfig.json Fix TypeScript errors in pages dir 2022-09-14 18:04:10 -07:00
yarn.lock /api/readFromArchive to serve a backed up image 2022-09-24 12:44:13 -07:00

Dress to Impress beach logo

Dress to Impress 2020

This is a rewrite of the Neopets customization app, Dress to Impress!

It's a React app, using the Next.js framework. (But kinda awkwardly, because it used to be a create-react-app, and we never fully rearchitected from that!)

The motivating goals of the rewrite are:

  • Mobile friendly, to match Neopets's move to mobile.
  • Simple modern tech, to be more maintainable over time and decrease hosting costs.

Installation guide

Getting everything set up

We'll assume you already have your basic development environment ready! Be sure to install the following:

  • Git
  • Node v16
  • The Yarn package manager
  • A MySQL database server

Before you clone the repository, install Git LFS, a tool for managing large files in Git. (We use this for the big batch of public data that we'll import into your dev database.)

Next, clone this repository, and ensure that scripts/db/public-data-from-modeling.sql.gz is around ~30MB large. (If it's much smaller, like 4KB, that probably means Git LFS didn't run correctly, so the next step would be to debug that, delete the repository, and try again!)

Next, run yarn install. This should install the app's NPM dependencies. (You may need to install some additional libraries to your machine for certain dependencies to install correctly. See the instructions for canvas in particular!)

Create your development database

Next, create two MySQL databases: openneo_impress and openneo_id. Then, create a MySQL user named impress_2020_dev with password impress_2020_dev, with full permissions for both databases.

(We're assuming that, on your local machine, your MySQL server isn't connected to the outside internet, and that there probably won't be sensitive information stored in your DTI database anyway, so it should be okay for this username and password to be hardcoded.)

Finally, run yarn db:setup-dev:full to fill the databases with the necessary schema, plus some real public data exported from DTI—like items, species, and colors!

See it work!

Okay, let's run yarn dev! This should start a DTI server on port 3000. Open it in your browser and hopefully it works!! 🤞

Optional: You might need some environment variables

In Next.js, you can set environment variables in a .env file, in the root of the app. (This will be ignored by Git, thanks to our .gitignore file.)

Note that some the features of the site won't work without special environment variables set, because they depend on production services we can't reproduce locally. But they generally fail gracefully and show a helpful error message, so you mostly won't have to worry about it until you run into it!

You mostly won't need to use this! But one early case you'll run into: for account creation and login to work, you'll need to create a .env file with a value for DTI_AUTH_TOKEN_SECRET: a secret string we use to cryptographically validates the user's login cookie. In production this is a closely-guarded secret, but for development, just open a random password generator and copy-paste the result into .env!

DTI_AUTH_TOKEN_SECRET=jl2DFjkewkrufsIDKwhatever

Architecture sketch

First, there's the core app, in this repository.

  • React app: Runs mainly on the client's machine. Code in src/app.
  • API functions: Run on our VPS server. Code in api and src/server.

Then, there's our various data storage components.

  • MySQL database: Runs on our Linode VPS, colocated with the old app.
  • Amazon S3: Stores PNGs of pet/item appearance layers, converted from the Neopets SWFs. (Once Neopets releases HTML5-compatible assets for all their items, we can hopefully remove this!)

Finally, there's our third-party integrations.

  • Honeycomb: For observability & performance insights on the backend.
  • Discord: For logging Support users' actions to a private Discord server.
  • Neopets: We load pet data from them! And plenty of assets!
  • Fastly: A CDN cache that sits in front of our server to help cache common requests and expensive operations. We also use them to proxy for images.neopets.com in some cases, so we can add crossdomain headers.

Notable old components not currently included in Impress 2020:

  • Elasticsearch: Used for lightning-fast item search queries. So far, we're finding the MySQL queries to be fast enough in practice. Might consider using some kind of fulltext query engine if that doesn't scale with more users!
  • Resque: Used to schedule background tasks for modeling and outfit thumbnails. (We now perform these tasks on-demand, and use Fastly to cache things like thumbnails!)
  • Memcache: Used to cache common HTML and JSON snippets. Not yet needing anything similar in Impress 2020!
  • The entire old Rails app! No references to it in here, aside from some temporary URL links to features that aren't implemented here yet.