Skip to content

Commit 536ae6a

Browse files
authored
Merge pull request #1 from featheru/Import-CS340-Items
Version 0.1 Release
2 parents 41d2099 + 4b83a29 commit 536ae6a

28 files changed

+36806
-0
lines changed

Build.txt

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
General Build Notes:
2+
3+
-- Update ServerConstant.js at deployment to be local or deployment
4+
5+
Building FrontEnd and Backend for Local Builds:
6+
-- local.sh
7+
8+
Building FrontEnd on Flip Server:
9+
10+
-- Set Integrated Terminal to correct location (cs340_project)
11+
-- (only needed first time) npm install
12+
-- npm run build
13+
-- (only needed first time) npm install -g serve
14+
-- serve -s build
15+
-- http://flip1.engr.oregonstate.edu:INSERTPORTNUM
16+
-- example:
17+
http://flip1.engr.oregonstate.edu:36109
18+
19+
Building FrontEnd For Local Builds:
20+
21+
-- Builds to localhost:portNum
22+
-- To begin the development, run `npm start` or `yarn start`.
23+
-- To create a production bundle, use `npm run build` or `yarn build`.
24+
25+
Database Login:
26+
27+
-- See local notes
28+
29+
Other Misc. Info:
30+
31+
Notice the use of %PUBLIC_URL% in the tags above.
32+
It will be replaced with the URL of the `public` folder during the build.
33+
Only files inside the `public` folder can be referenced from the HTML.
34+
35+
Unlike "/favicon.ico" or "favicon.ico", "%PUBLIC_URL%/favicon.ico" will
36+
work correctly both with client-side routing and a non-root public URL.
37+
Learn how to configure a non-root public URL by running `npm run build`.

zillowgame/.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
/node_modules/

zillowgame/local.sh

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
#!/bin/bash
2+
node src/DatabaseController.mjs &
3+
npm start

0 commit comments

Comments
 (0)