Skip to content

Commit 9dd07c5

Browse files
committed
Rename game from 'just-let-me-draw' to 'draw-freely'
1 parent fd21c10 commit 9dd07c5

File tree

8 files changed

+14
-14
lines changed

8 files changed

+14
-14
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
# Just Let Me Draw (JLMD)
1+
# Draw Freely
22

3-
JLMD is a drawing game that aims to inspire creativity through fun drawing anything you like on a shared canvas while taking turns with other drawers.
3+
Draw Freely is a drawing game that aims to inspire creativity through fun drawing anything you like on a shared canvas while taking turns with other drawers.
44

55
There will be three modes:
66
- Time mode: Each drawer gets a turn of 10 seconds before it is the next drawer's turn to draw.

backend/package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

backend/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"name": "just-let-me-draw-backend",
2+
"name": "draw-freely-backend",
33
"version": "1.0.0",
44
"main": "index.ts",
55
"scripts": {

devops/main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ resource aws_security_group security_group {
9393
vpc_id = aws_vpc.vpc.id
9494

9595
name = "${var.app_name}-${var.environment}-sg"
96-
description = "Security group for just-let-me-draw game"
96+
description = "Security group for draw-freely game"
9797

9898
tags = {
9999
Name = "${var.app_name}-${var.environment}-sg"

devops/on-deploy.sh

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ region = ${aws_region}
3131
credentials = Ec2InstanceMetadata
3232
EOF
3333

34-
cat << 'EOF' > /etc/nginx/sites-available/just-let-me-draw
34+
cat << 'EOF' > /etc/nginx/sites-available/draw-freely
3535
server {
3636
listen 80;
3737
server_name drawfreely.art;
@@ -53,21 +53,21 @@ server {
5353
}
5454
EOF
5555

56-
ln -s /etc/nginx/sites-available/just-let-me-draw /etc/nginx/sites-enabled/
56+
ln -s /etc/nginx/sites-available/draw-freely /etc/nginx/sites-enabled/
5757
rm -f /etc/nginx/sites-enabled/default
5858

5959
mkdir -p /home/ubuntu/app
6060
cd /home/ubuntu/app
6161

6262
git clone https://github.com/LivingLimes/draw-freely.git
63-
cd just-let-me-draw/backend
63+
cd draw-freely/backend
6464
npm install
6565

6666
systemctl restart nginx
6767

6868
npm install -g pm2
6969

70-
FRONTEND_URL=https://draw-freely.vercel.app pm2 start --name "just-let-me-draw-backend" npm -- start
70+
FRONTEND_URL=https://draw-freely.vercel.app pm2 start --name "draw-freely-backend" npm -- start
7171

7272
pm2 startup systemd
7373
pm2 save

devops/variables.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ variable "environment" {
44

55
variable "app_name" {
66
type = string
7-
default = "just-let-me-draw"
7+
default = "draw-freely"
88
}
99

1010
variable cost_center {

frontend/package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

frontend/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"name": "just-let-me-draw-frontend",
2+
"name": "draw-freely-frontend",
33
"version": "0.1.0",
44
"private": true,
55
"dependencies": {

0 commit comments

Comments
 (0)