-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
0b43a97
commit deb829a
Showing
12 changed files
with
4,156 additions
and
68 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
/node_modules | ||
/.env | ||
/uploads | ||
/package-lock.json | ||
/public/images/uncompressed | ||
/public/images/uncompressed | ||
.idea/ |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
sudo apt-get update -y | ||
sudo DEBIAN_FRONTEND=noninteractive apt-get upgrade -y | ||
curl -fsSL https://deb.nodesource.com/setup_20.x | sudo bash - | ||
sudo apt-get install -y nodejs | ||
sudo npm install -g pm2 | ||
sudo apt-get install -y git | ||
git clone https://github.com/nuromirzak/aqyndar.git | ||
cd aqyndar || return | ||
# set up here environment variables manually | ||
npm install | ||
pm2 start app.js --name aqyndar | ||
pm2 startup | ||
pm2 logs aqyndar --lines 100 | ||
pm2 flush |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -279,4 +279,4 @@ module.exports = { | |
saveAuthor, | ||
deleteAuthor, | ||
displayAuthor, | ||
} | ||
} |
Oops, something went wrong.