Skip to content

Commit

Permalink
new upstage path in navigations and refs
Browse files Browse the repository at this point in the history
  • Loading branch information
teddyfullstack committed Dec 4, 2021
1 parent e02b5ce commit 1f29c29
Show file tree
Hide file tree
Showing 8 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# UpStage

[![CI](https://github.com/upstage-org/mobilise/actions/workflows/app1.yml/badge.svg)](https://github.com/upstage-org/mobilise/actions/workflows/app1.yml)
[![CI](https://github.com/upstage-org/upstage/actions/workflows/app1.yml/badge.svg)](https://github.com/upstage-org/upstage/actions/workflows/app1.yml)

UpStage is a platform for cyberformance - remote players combine digital media in real-time for an online audience. All you need is a web browser!

Expand Down
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@
"description": "UpStage is a platform for cyberformance: remote players combine digital media in real-time for an online audience. All you need is a web browser!",
"logo": "logo.svg",
"github_user": "upstage-org",
"github_repo": "mobilise",
"github_repo": "upstage",
"github_banner": "true",
"page_width": "90%",
"donate_url": "https://upstage.org.nz/?page_id=278",
Expand Down
2 changes: 1 addition & 1 deletion system/dev/event_archive.service
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ Description=UpStage event archive service

[Service]
Type=simple
ExecStart=/usr/bin/python3 /home/upstage/mobilise/run_event_archive.py
ExecStart=/usr/bin/python3 /home/upstage/upstage/run_event_archive.py

[Install]
WantedBy=multi-user.target
4 changes: 2 additions & 2 deletions system/dev/upstage.ini
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,9 @@ enable-threads=false
socket=/home/upstage/uwsgi_sockets/upstage.socket
chown-socket=upstage:upstage
chmod-socket=777
chdir=/home/upstage/mobilise/
chdir=/home/upstage/upstage/
module = run_upstage:app
env = PYTHONPATH=/home/upstage/mobilise
env = PYTHONPATH=/home/upstage/upstage
# NO!!! daemonize=/var/log/uwsgi/urbn_stripe_webhook.log
logto2 = /var/log/uwsgi/upstage.log

2 changes: 1 addition & 1 deletion system/dev/upstage.service
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ After=syslog.target
LimitNOFILE=100000
User=upstage
Group=upstage
ExecStart=/bin/sh -c "exec /usr/local/bin/uwsgi --ini /home/upstage/mobilise/system/dev/upstage.ini"
ExecStart=/bin/sh -c "exec /usr/local/bin/uwsgi --ini /home/upstage/upstage/system/dev/upstage.ini"
# Requires systemd version 211 or newer
RuntimeDirectory=uwsgi_socket
Restart=always
Expand Down
4 changes: 2 additions & 2 deletions system/prod/app1_nginx_upstage.conf
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ server {
#limit_req zone=limitone burst=20 nodelay;
#auth_basic "Enter password.";
#auth_basic_user_file /etc/nginx/htpasswd;
alias /home/upstage/mobilise/ui/dashboard/dist/;
alias /home/upstage/upstage/ui/dashboard/dist/;
try_files $uri $uri/ /index.html;
add_header Last-Modified $date_gmt;
add_header 'Cache-Control' 'no-store, no-cache, must-revalidate, proxy-revalidate, max-age=0';
Expand All @@ -62,7 +62,7 @@ server {


location /studio {
alias /home/upstage/mobilise/ui/studio/dist/;
alias /home/upstage/upstage/ui/studio/dist/;
try_files $uri $uri/ /studio/index.html;
add_header Last-Modified $date_gmt;
add_header 'Cache-Control' 'no-store, no-cache, must-revalidate, proxy-revalidate, max-age=0';
Expand Down
2 changes: 1 addition & 1 deletion ui/dashboard/src/components/NavBar.vue
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@
<div class="vertical-divider" />
<a
class="navbar-item"
href="https://github.com/upstage-org/mobilise/"
href="https://github.com/upstage-org/upstage/"
target="_blank"
>
Develop
Expand Down
2 changes: 1 addition & 1 deletion ui/dashboard/src/views/backstage/Workshop.vue
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<h1 class="title">WORKSHOP</h1>
<h2 class="subtitle">
<ul>
<li>View Workshop wireframes <a class="has-text-primary" href="https://github.com/upstage-org/mobilise/issues/64" target="_blank">here</a></li>
<li>View Workshop wireframes <a class="has-text-primary" href="https://github.com/upstage-org/upstage/issues/64" target="_blank">here</a></li>
</ul>
</h2>
</div>
Expand Down

0 comments on commit 1f29c29

Please sign in to comment.