Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

minor change to deploy script #35

Merged
merged 2 commits into from
Aug 30, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions .github/workflows/test-api.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,10 @@ jobs:
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Docker Compose
run: |
sudo curl -L https://github.com/docker/compose/releases/latest/download/docker-compose-$(uname -s)-$(uname -m) -o /usr/local/bin/docker-compose
sudo chmod +x /usr/local/bin/docker-compose
- name: Build images
run: docker-compose build
- name: Run Test
Expand Down
2 changes: 1 addition & 1 deletion deploy/templates/ec2/server-setup.sh.tpl
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ sudo chmod +x /usr/local/bin/docker-compose
sudo usermod -aG docker ec2-user # Add user to "docker" group for permissions

# Install git
sudo yum install -y git
sudo yum install -y git

# Jukebox-Server Configuration ========================
git clone https://github.com/ufosc/Jukebox-Server.git /home/ec2-user/Jukebox-Server
Expand Down
2 changes: 1 addition & 1 deletion src/docs/swagger_output.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
"application/json"
],
"paths": {
"/": {
"/api": {
"get": {
"tags": [
"Base"
Expand Down