manifold/web
2022-10-14 16:21:54 +01:00
..
components New component to add arbitrary (but static) react embeds to posts programatically + midterms component (#1051) 2022-10-14 16:21:54 +01:00
hooks Tipping in posts (#1045) 2022-10-14 13:05:07 +01:00
lib Tipping in posts (#1045) 2022-10-14 13:05:07 +01:00
pages Tipping in posts (#1045) 2022-10-14 13:05:07 +01:00
posts Autosave post, market, comment rich text (#1015) 2022-10-11 12:52:27 -07:00
public Auto-prettification 2022-10-14 06:49:23 +00:00
.eslintrc.js Don't break build on unused import (#1046) 2022-10-13 18:16:22 -07:00
.gitignore Generate images from StableDiffusion (#1035) 2022-10-12 09:53:04 -07:00
.prettierignore Host Ida and Alex's MTG Guesser game (#656) 2022-07-20 16:57:51 -07:00
.yarnrc when adding package, don't put ^ before version (#645) 2022-07-13 15:14:06 -07:00
get-manalink-url.ts initial commit for manalinks UI improvements (#642) 2022-07-13 16:57:34 -05:00
next-env.d.ts upgrade nextjs version 2021-12-15 23:49:38 -06:00
next.config.js Remove images config from next.config.js (#931) 2022-09-23 14:55:27 -07:00
package.json Update stability-client to fix /dream 2022-10-13 21:44:22 -07:00
postcss.config.js Prettier: no semi, spaces 2, single quote, trailing comma 2021-12-02 17:49:46 -06:00
README.md A couple additions to help newbies out (#104) 2022-04-27 13:15:14 -07:00
tailwind.config.js added cancelling tipping and lil coin (#1047) 2022-10-14 01:47:51 -05:00
tsconfig.json Typescript project references take 2 (#586) 2022-06-27 13:32:24 -07:00

Manifold Markets web app

Getting started

To run the development server, install Yarn 1.x, and then in this directory:

  1. yarn to install all dependencies
  2. yarn dev:dev starts a development web server, pointing at the development database
  3. Your site will be available on http://localhost:3000

Check package.json for other command-line tasks. (e.g. yarn dev will point the development server at the prod database. yarn emulate will run against a local emulated database, if you are serving it via yarn serve from the functions/ package.)

Tech stack

Manifold's website uses Next.js, which is a React-based framework that handles concerns like routing, builds, and a development server. It's also integrated with Vercel, which is responsible for hosting the site and providing some other production functionality like serving the API. The application code is written exclusively in Typescript. Styling is done via CSS-in-JS in the React code and uses Tailwind CSS classes.

Building and deployment

Vercel's GitHub integration monitors the repository and automatically builds (next build) and deploys both the main branch (to production) and PR branches (to ephemeral staging servers that can be used for testing.)

Parts of the file structure that directly map to HTTP endpoints are organized specially per Next.js's prescriptions:

public/

These are static files that will be served by Next verbatim.

pages/

These are components that Next's router is aware of and interprets as page roots per their filename, e.g. the React component in pages/portfolio.tsx is rendered on the user portfolio page at /portfolio. You should look in here or in components/ to find any specific piece of UI you are interested in working on.

pages/api/

Modules under this route are specially interpreted by Next/Vercel as functions that will be hosted by Vercel. This is where the public Manifold HTTP API lives.

Contributing

Please format the code using Prettier; you can run yarn format to invoke it manually. It also runs by default as a pre-commit Git hook thanks to the pretty-quick package. You may wish to use some kind of fancy editor integration to format it in your editor.

Developer Experience TODOs

  • Prevent git pushing if there are Typescript errors?