- cd into the "Frontend" folder.
- run "npm run dev".
backend
- cd backend
- python3 -m venv venv
- source venv/bin/activate
- pip install -r requirements.txt
Vue Router is already installed in this application.
If you are going to make adjustments, I think the only things you have to edit are in the /src and /public folders.
/assets has aesthetics stuff, like logos and css stylesheets
/components has the FUNCTIONAL aesthetics stuff. Specifically, templates that we can reference across pages.
/router has the code for page navigation. Might have to be updated periodically with new pages being added.
/views has the actual pages. Add them as required and then we can just call the code to navigate pages (I think)
Do not touch anything else (I think)
If you are developing and want to see your updates in real-time, run
npm run dev
in your Terminal. Any updates you save to the program will update in real time which is pretty neat.
VSCode + Volar (and disable Vetur). See Vite Configuration Reference.