This is an old revision of the document!
Meeting Notes: Tue 9th July 2019
Welcome! This is the notes page for our third learn-to-code-from-scratch meeting in The Avalon Bar. The plan is to run something like this every two weeks to get people up and running with basic web development and system admin.
Learn to Code: What we'll do
Just like last month, I'll spend some time taking anyone new through the basic set up steps. For those that are all set up and ready to go - we'll work on the following:
Create a simple quiz page. When you visit it, it chooses a random question from a list you've supplied earlier and asks for the answer in a form then checks if it's correct or not.
We'll build this using a simple array to begin with, then switch to getting the information from a database.
Getting Started: The basic steps
Skip through these if you're ready to start directly on the above, otherwise, these are the things we'll do, in order:
-
Setting up your server with Apache and MySQL - the server doesn't have much software installed, just a basic terminal, these steps install Apache (the webserver) and MySQL (the database). At this step we also downloaded Adminer (a
GUI to manage the database, similar to PHPMyAdmin).
Then we went through the Amazon AWS interface, and set up Security Groups for the webserver (HTTP) - this is basically Amazon's equivalent of a firewall, we had to open a port to allow access to our IP in a web browser
-
-
-
-