thejmazz / UofTBiohacks

UofTBiohacks CRUD app

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

UofTBiohacks

On prod:

cp sample.env .env
# fill out values in .env
# modify Caddyfile.prod as appropiate
docker-compose -f docker-compose.prod.yml up -d db
docker-compose -f docker-compose.prod.yml up -d api
docker-compose -f docker-compose.prod.yml up -d frontend
docker-compose -f docker-compose.prod.yml up -d caddy

docker cp <folder>_frontend_1:/home/node/dist ./thedist

Redeploy frontend:

git pull
docker-compose -f docker-compose.prod.yml build frontend
docker-compose -f dockerc-compose.prod.yml up frontend
# docker exec uoftbiohacks_caddy_1 ls -lh before/after to verify (dates on files should change)

Getting Started

cp sample.env .env
# fill out values in .env
docker-compose -f docker-compose.dev.yml up -d db
docker-compose -f docker-compose.dev.yml up api

See ./server for commands to test api + db is working.

Front end:

alias dcd="docker-compose -f docker-compose.dev.yml"
dcd build frontend
dcd up frontend

Run Caddy

dcd up caddy

Run babel-node

dcd exec frontend ./node_modules/.bin/webpack
dcd exec frontend ./node_modules/.bin/webpack --config webpack.node.js
dcd exec frontend ./node_modules/.bin/babel-node ./dist/app.node.js
cd static
# edit ./static/src/constants/uris.js to point to wherever the api is available
./node_modules/.bin/webpack # build .js files
./node_modules/.bin/webpack --config webpack.node.js # builds ./dist/app.node.js
./node_modules/.bin/babel-node ./dist/app.node.js # builds html

# OR
cd static
# build static data container
docker build -t hackathon-static .
cd ..
# modify Caddyfile as appropiate
docker-compose -f docker-compose.prod.yml up -d # caddy uses volume from static container

UofT Biohacks Registration and Group Management Application

js-standard-style

Redux Logo with Dark Title

To run RESTful JSON API (koa):

cd server
npm install
node server.js

To run pre-rendered static frontend (React, redux, webpack):

cd static
npm install

# pre-build static files
npm run build
# build out bundled+splitting scripts
webpack

# serve static content
npm run start

About

UofTBiohacks CRUD app


Languages

Language:JavaScript 75.2%Language:HTML 12.6%Language:CSS 11.7%Language:Shell 0.4%