The new Augsburg ACM website is currently being developed with Reactjs and TypeScript for the frontend. For the backend we will be using Firebase
To run the app, you must have NodeJs, and the Yarn package manager.
Before you are able to start the webserver, run the following command:
yarn
To start a local webserver to view the app, run the following command:
yarn start
if you are using MacOS or Linux, you might need to run with sudo:
sudo yarn start
Your main entry point to edit the application is in src/App.tsx
. From here, you can make modifications that will be rendered to the page.
Happy hacking!