Skip to content

Commit

Permalink
Deployment complete
Browse files Browse the repository at this point in the history
  • Loading branch information
Tangeyo committed Aug 12, 2024
1 parent 623a169 commit b856ae9
Show file tree
Hide file tree
Showing 30 changed files with 1,218 additions and 46 deletions.
44 changes: 0 additions & 44 deletions README.md

This file was deleted.

File renamed without changes.
File renamed without changes.
File renamed without changes.
3 changes: 1 addition & 2 deletions fly.toml → frontend/fly.toml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# fly.toml app configuration file generated for syntaxsorcerer on 2024-08-11T14:46:24-07:00
# fly.toml app configuration file generated for syntaxsorcerer on 2024-08-12T01:43:06-07:00
#
# See https://fly.io/docs/reference/configuration/ for information about how to use this file.
#
Expand All @@ -15,7 +15,6 @@ kill_timeout = '5s'

[http_service]
internal_port = 3000
force_https = false
auto_stop_machines = 'stop'
auto_start_machines = true
min_machines_running = 0
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
2 changes: 2 additions & 0 deletions server/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
node_modules
.env
15 changes: 15 additions & 0 deletions server/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
FROM node

RUN mkdir -p /usr/src/app

WORKDIR /usr/src/app

COPY package.json /usr/src/app/

RUN npm install

COPY . /usr/src/app

EXPOSE 3000

CMD [ "npm", "start" ]
22 changes: 22 additions & 0 deletions server/fly.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
# fly.toml app configuration file generated for syntaxsorcerer-backend-black-shape-7620 on 2024-08-12T00:22:43-07:00
#
# See https://fly.io/docs/reference/configuration/ for information about how to use this file.
#

app = 'syntaxsorcerer-backend'
primary_region = 'sjc'

[build]

[http_service]
internal_port = 3000
force_https = true
auto_stop_machines = 'stop'
auto_start_machines = true
min_machines_running = 0
processes = ['app']

[[vm]]
memory = '1gb'
cpu_kind = 'shared'
cpus = 1
Loading

0 comments on commit b856ae9

Please sign in to comment.