NOTE: This repo was a version of Debate Map intended to be used as the Canonical Debate official client.
Due to restructuring, Debate Map is now instead a "tier 2" project, which just uses the Canonical Debate service layer for claim/argument storage. You can find a link to the current version of Debate Map repo here. (live site here)
This repo will be replaced in the future with a simpler "base client" for the CD service layer; it's just up for now until that base client is ready for use.
The official client website for the Canonical Debate project.
For more information, visit the website at: https://canonicaldebate.com
- Clone the repo to disk: https://github.com/canonical-debate-lab/client.git
- Run
npm install
in the project's root folder.
For recommended setup of your code editor and other tools, see: Editor setup
- Run
tsc
in a console, and keep it running in the background. - Run
npm run dev
in the root project folder. (ornpm run dev-with-stats
) - Navigate to
localhost:3005
.
- Create two Google Firebase projects -- one for development, one for production.
- Edit the
.firebaserc
andScripts/Build/CreateConfig.js
files, replacing their paths and data with your own. - Add at least one form of authentication to your Firebase projects. (Google sign-in is easiest)
- Run the project locally. (see "Running locally" section below)
- Sign in, using the panel at the top-right.
- Add "?init=true" to the address-bar url, and reload the page.
- Press the "Initialize database" button which will appear at the top-left.
- Run
tsc
in a console, and keep it running in the background. (this reduces deploy:prod-quick compile times from ~59s to ~32s, by enabling incremental compilation) - Run
npm run deploy:[dev/prod/prod-quick]
. Note thatdeploy:prod-quick
time is ~32s, vs ~86s fordeploy:prod
(since the former doesn't use minification and such).
The below are recommendations for your editor setup, which will make editing the project more efficient and less error prone. (due to matching our setup)
Browser: Chrome
Editor: Visual Studio Code
VSCode extensions:
- Search node_modules: Very helpful for quickly opening files in modules under
node_modules
. - ESLint: Shows warnings when code does not match the project's coding style.
- If you get an odd compile error or the CSS does not seem to be loading for the site (when recompiling), try deleting the cache at "node_modules/.cache/hard-source".