- Create basic landing page
- Create multi-page funtionality
- Link with backend
- Create useable, responsive CSS
- Make better documentation
Install all packages with yarn
Run yarn start to launch it in a live browser tab
You can now edit pages without needing to reload the tab.
If you close the tab, you can reopen it in localhost:3000
Run yarn start to make sure your version is working.
Once the app is working, you can run yarn run build to create an optimised version.
To make the build open, you can run
yarn global add serveserve -p 80 -s build
with port 80 being the port accessed from the browser. The default is port 5000
You can then access the local build in localhost:80 or whatever port you chose.
Please contribute non-essential features to a new branch with the prefix of feature-(name)
All essential features should have the prefix essential-(name) or urgent-(name)
e.g. an essential security fix is needed, team 1 add it as name essential-bug-fix.
They then open a pull request for the branch to be merged with master.