The MyHomeworkSpace API server. See also the API reference and Web client.
- A modern version of Go (1.11 or newer, recommended to use whatever the latest version is)
- MySQL (preferably version 8, but 5.6 or 5.7 work too)
- Redis
- MailHog (only required if you want to test emails)
- OpenResty (or any other web server, but the guide assumes OpenResty)
- Roamer
Go should be downloaded from the official website.
MySQL can be installed via your operating system's package manager, or via the official site if on Windows or macOS. You might also want some tool to connect to and manage your MySQL database, such as MySQL Workbench.
Redis should be installed via your operating system's package manager, but you can also compile the latest version from their website if you want.
MailHog can be downloaded from their releases page. Windows users can download the appropriate .exe file and run it. Linux or macOS users should download either the _linux_amd64
or _darwin_amd64
executable. Then, open a terminal, cd
to the location of the executable, chmod +x <name of executable>
, and ./<name of executable>
. That last command starts MailHog with a web UI at http://localhost:8025. Later on, you'll only need to run that last command to start MailHog.
OpenResty can be installed by following their instructions. You can use a different server, such as nginx, Apache, or Microsoft IIS, but you might have to alter the instructions below.
Roamer can be installed by following their instructions.
This guide might seem long and complicated! However, don't worry: it's supposed to be somewhat methodical and detailed, which is why there's so many steps. You'll be up and running in no time!
- First, you'll need to create a new database in MySQL. You can call it something clever, like
myhomeworkspace
. - You'll also want to create a new user account in MySQL that has full access to the
myhomeworkspace
database. Make its password something random and secure. You'll need it later. - Run
go get github.com/MyHomeworkSpace/api-server
. This will download this repository (and its dependencies) into the appropriate location of your $GOPATH. - In a terminal, change directory into the location where the code was downloaded (on Linux/macOS, this will be something like
~/go/src/github.com/MyHomeworkSpace/api-server
) - Run
roamer setup
. Aroamer.local.toml
file will be created. - Open the
roamer.local.toml
file in a text editor of your choice. Update theDSN
line to refer to MySQL account and database you just created. It should look something likeDSN = "myhomeworkspace:mySuperSecurePassword@tcp(localhost:3306)/myhomeworkspace"
. - Run
go run github.com/MyHomeworkSpace/api-server
. It will display an error, this is normal. - A new
config.toml
file will have appeared in the api-server folder. Open it in a text editor. - This part can get somewhat specific to your setup. We are making some assumptions, but these assumptions will be valid if you follow this guide.
- In the
[server]
section: since the default port, 3000, is somewhat common, we recommend changing it. This guide uses port 3001. - In the
[database]
section: setPassword
to the password you set for your MySQL account in step 2. - For the
[email]
section (assuming you're using MailHog):
Enabled = true
FromAddress = "[email protected]"
FromDisplay = "MyHomeworkSpace <[email protected]>"
SMTPHost = "localhost"
SMTPPort = 1025
SMTPSecure = false
SMTPUsername = "[email protected]"
SMTPPassword = "password123"
- For the
[redis]
section: the defaults are fine, unless you've changed Redis' default settings. - For the
[cors]
section: setEnabled
to true. - You can leave the
[errorlog]
,[feedback]
,[tasks.slack]
, and[mit]
sections as-is. - Save your changes to
config.toml
, and re-rungo run/github.com/MyHomeworkSpace/api-server
in the terminal from step 4. Leave this running. - Visit http://localhost:3001 in your browser. You should see a page saying "MyHomeworkSpace API server".
- Now, it's time to set up OpenResty. OpenResty will act as the main webserver that everything goes through. That way, you're able to host both the API server and the client on the same computer, or even other unrelated projects!
- First, however, we'll set up local domain records. This is the myhomework.localhost that was mentioned earlier, and will make it so that you can access your local copy of MyHomeworkSpace by going to myhomework.localhost in your browser.
- You need to open the hosts file on your computer. On Linux and macOS, this is located at
/etc/hosts
. On Windows, this is located atC:\Windows\System32\drivers\etc\hosts
. Editing this file will likely require administrator privileges. - In the hosts file, add the following entries:
127.0.0.1 myhomework.localhost
127.0.0.1 api-v2.myhomework.localhost
127.0.0.1 app.myhomework.localhost
- Save your changes, and try to go to http://api-v2.myhomework.localhost in your browser. You should see a generic "Welcome to OpenResty!" page.
- Now, open up the OpenResty configuration file. On Linux, this is probably at
/etc/openresty/nginx.conf
. On macOS, this is probably at/usr/local/etc/openresty/nginx.conf
. You might need administrator privileges to edit this file. - You'll see a big
http {}
block, with lots of stuff in it. At the bottom of this block, right before the last}
, you will want to add the following (which will set up the API server, client, and main website all at once):
map $http_upgrade $mhs_connection_upgrade {
default upgrade;
'' close;
}
server {
listen 80;
listen [::]:80;
server_name api-v2.myhomework.localhost;
location / {
proxy_pass http://127.0.0.1:3001;
}
}
server {
listen 80;
listen [::]:80;
server_name app.myhomework.localhost;
proxy_buffering off;
keepalive_disable safari;
keepalive_timeout 0;
location / {
proxy_pass http://127.0.0.1:9001;
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection $mhs_connection_upgrade;
}
}
server {
listen 80;
listen [::]:80;
server_name myhomework.localhost;
location / {
proxy_pass http://127.0.0.1:4003;
}
}
- Save these changes. Now you need to tell OpenResty that you changed the config file. This can be done by running
sudo openresty -s reload
. You can also dosudo openresty -t
to verify the syntax of the config file. - Try going to http://api-v2.myhomework.localhost in your browser now. You should see the "MyHomeworkSpace API server" page from before.
- Congratulations! You've set up the MyHomeworkSpace API server. You probably want to set up the client or website now.
Once you've done the setup above, running the server is as easy as:
cd ~/go/src/github.com/MyHomeworkSpace/api-server
go run github.com/MyHomeworkSpace/api-server
If you're testing email-related things, you should also make sure MailHog is set up and running. See the Requirements section if you need help with that.