Handover of CSESoc Website 2019 to the Future
You might be looking for the (F)AQ at the bottom - have a read of that and then the rest of the document. If that doesn’t answer your question feel free to contact me @Gordon Zhong (Unlicensed)
Core tech
Frontend: Vue + Vuetify (team angled for this, but imo not necessary)
API + Server: Golang (you can view the “api docs” here: https://gawdn.com/api-docs/ - link might eventually break in the future…)
Database: MongoDB
Building the project
You need Node.JS and yarn: it might be worth looking into constructing a Dockerfile at this point
Clone the repository: `git clone https://github.com/csesoc/csesoc.unsw.edu.au `
Checkout to the dev branch:
git checkout dev
yarn
to install dependenciesyarn build
- you might need to install the Vue CLI at this point before it runsyarn builds the Vue files to a static bundle in
dist/
To view the frontend as intended run a web server now e.g.
python3 -m http.server 8080
, stop this once you want to investigate the API
You will need a running MongoDB server at this point.
Different per platform but typically involves running
mongod
You don’t need to create a DB/collections, the database is schemaless
You need Golang installed at this point
cd server/
go build
A file will be generated (different on different systems typically
./m
or similar)Run
./m
to start the server on0.0.0.0:1323
([::]:1323
) - this serves both the API and frontend simultaneously
Showcase vs. deployable
Here are some places that use dummy data for showcase purposes
Showcase | What it should do | Fix |
---|---|---|
`Footer.vue` fetches from a gist to dummy the API | Pull a list of sponsors from the API | Add |
`LoginForm.vue` fetches data from | Use the | ? (should decide if login is necessary - need to check login code carefully) |
| Use | Need to update categories to have icons(?) and route (same w/ posts) |
| Accept data from the API | Use a fetch call |
| Use actual API endpoints - you can read the gists to figure out what they vaguely should return | Replace API endpoints; |
Go serves static assets and API | static assets are served using a proper file server e.g nginx - you can test using python’s inbuilt | Decouple the HTTP server and the API from each other |
| Show a gallery of images (intended for social images) but could be anything | because of the dummy data used all the images are now broken - once you use real data it’ll show |
Simple topology
Summary of code (file by file)
Directory/file | What was the intention? | What is the current state? |
---|---|---|
public/ | Static files used by Vue | Holds wrapper on all Vue views |
server/ | Go files that serve the web server and the API |
|
server/category.go | Website category code: | |
server/go.mod | File that stores Go modules | |
server/go.sum | Auto-generated lock file for Go modules | |
server/login.go | Log into the website using LDAP authentication (UNSW zID login) - avoiding rolling own auth (never properly established if this was necessary beyond admins logging in) - potential use for merch? voting? | https://www.tldp.org/HOWTO/LDAP-HOWTO/whatisldap.html
|
server/post.go | Everything is a post: | |
server/server.go | Serves | Can serve the frontend and API (connecting to the MongoDB database) including static assets |
server/sponsor.go | Handles sponsor related database code | |
services/ | Holds the Dockerfiles for the project | Incomplete, doesn’t actually build the project
|
src/assets/ | Holds static assets |
|
src/components | Holds Vue components (reusable parts) |
|
.eslintrc.js | Provides linting to the Vue side of the project - would highly recommend setting up your IDE to automatically run the linter as you go |
|
CONTRIBUTING.md | The branch structure we used |
|
Preparation for deployment
You will need to separate the database, static file server and API into separate Dockerfiles
Then follow the deployment guide -> How to deploy a project on Wheatley
(F)AQ
Why is the HTML, CSS and JS mixed? Isn’t that violating separation of concerns?
Keeping them together (can) create more cohesive reusable components - See the official philosophy here: https://vuejs.org/v2/guide/single-file-components.htmlWhy are there so many
views
? Why aren’t these structured into folders?
Because they aren’t intended to be used - they were there for showcase purposes, the original intention is to have a content page and maybe two or three very special pages e.g. the Home page which deserve their own viewWho can I blame for all the messy code?
Ultimately me (@Gordon Zhong (Unlicensed)) - if you don’t know why something is done that way, feel free to ask me and if I don’t know, don’t feel the need to keep it! The code that was written was by complete beginners so by no means is it best practice - even though we did make many important design decisions to get closer.Should I rewrite the code?
This is something that is asked every year:
- https://github.com/csesoc/csesoc-website
- https://github.com/csesoc/csesoc-website-v2
- https://github.com/csesoc/csesoc-website-v2-old
- https://github.com/csesoc/csesoc.unsw.edu.au
The answer is ultimately up to you but remember programming is not just about code, it’s about design and those decisions will always take longer than you think.