GitXplorerGitXplorer
b

codeshovel-ui

public
1 stars
0 forks
29 issues

Commits

List of commits on branch master.
Unverified
89e73cf4975e7adde0552949ee1351cc62e94fcb

Add Typescript support

bbraxtonhall committed 5 years ago
Unverified
d233c39cb833a3167bc6aecbc6a8701ed6e54ff0

Don't pass redundant data

bbraxtonhall committed 5 years ago
Unverified
578529eda9b8af0998b15413efdcb1453cdce684

Update About.tsx

bbraxtonhall committed 5 years ago
Unverified
c6bf38c895f9739483c027396ba8cccade77ccd5

Autocomplete placeholder text

bbraxtonhall committed 5 years ago
Unverified
d02b1d7ecbb63d284af1d0ffec05032f550e914b

Add more Python Support

bbraxtonhall committed 5 years ago
Unverified
307c510d647c55cfad7c0ea8d1be0b8dd857c891

Change wording in prep for more languages

bbraxtonhall committed 5 years ago

README

The README file for this repository.

codeshovel - ui

A React based User Interface, serving interactions with ataraxie/codeshovel.

Serving the User Interface

docker-compose

Use this method to serve this UI accompanied by a web service. Create a .env file in the root of the project with all the variables listed in .env.sample. Then from the project directory, run:

docker-compose build && docker-compose up -d

Docker

To build an image, from the project directory run:

Docker build --build-arg SERVER_ADDRESS=<Address of webservice> \
             --build-arg PUBLIC_ADDRESS=<Public address of UI> \
             -t csui .

To run a container, run:

Docker run -p <Port to listen on>:5000 csui

Command Line

Requires Node version 10 or higher and Yarn

Development Server

To prepare for running, from the project directory run:

yarn install

To deploy, from the project directory run:

REACT_APP_SERVER_ADDRESS=<Address of webservice> yarn start

Static Server

To build the project, from the project directory run:

yarn install && REACT_APP_SERVER_ADDRESS=<Address of webservice> \
                PUBLIC_URL=<Public address of UI> yarn build

To deploy, from the project directory run:

yarn serve -s build