!!! Note This repo was last updated in 2023 -> instructions related to third party integrations (i.e., Heroku deployment) may be outdated. The general AR setup however should be fine. If you try any of the instruction steps and find it doesn't work for you, pease let me know! Otherewise I will likely get to this repository late 2026 for a comprehensive review of functionality.
Basic examples for students
If in a node example - open a terminal to that folder location and type npm start
- this is the same for the heroku or AR examples; both are initiated with start scripts
node app.jsornode index.jsbut when set up properly with test, start, or other scripts inpackage.jsonwe default to standardnpm start
If in a python example - open a terminal to that folder location and type python3 server.py or python server.py
- If in the heroku python example type
python app.py(orpython3 app.py) - Flask/gunicorn app environment self-starts a server, and so we do not need to specifically call one