All Projects → cirruslabs → cirrus-ci-web

cirruslabs / cirrus-ci-web

Licence: MIT License
Web front end for Cirrus CI

Programming Languages

typescript
32286 projects
javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to cirrus-ci-web

create-react-app-relay-modern
Create React App + Relay Modern
Stars: ✭ 50 (+4.17%)
Mutual labels:  relay-modern
klaravel
DEPRECATED Laravel control panel for developers, comes with integrated Scaffold generator, backups, logs, and embedde user guide.
Stars: ✭ 24 (-50%)
Mutual labels:  relay-modern
pyladies-courseware
Homework/task submit and review web app · based on React and Python aiohttp
Stars: ✭ 14 (-70.83%)
Mutual labels:  relay-modern
isomorphic-relay-app
Example isomorphic React-Relay-(Modern / Classic)-Router app and helper lib that connects to Artsy's GraphQL service
Stars: ✭ 13 (-72.92%)
Mutual labels:  relay-modern
docker-react-native-android
Docker image used to build React Native projects for Android
Stars: ✭ 28 (-41.67%)
Mutual labels:  relay-modern
GraphQL-Client-Exploration
Simple exploration of GraphQL Clients
Stars: ✭ 18 (-62.5%)
Mutual labels:  relay-modern
react-relay-appsync
AppSync for Relay
Stars: ✭ 19 (-60.42%)
Mutual labels:  relay-modern
datalist
Turns your data into a table with Relay Modern RefetchContainer
Stars: ✭ 12 (-75%)
Mutual labels:  relay-modern
relay-store-types-generator
Generate types for the Relay store from your GraphQL schema.
Stars: ✭ 17 (-64.58%)
Mutual labels:  relay-modern
relay-modern-future
Relay Modern Future: Hooks + Suspense
Stars: ✭ 25 (-47.92%)
Mutual labels:  relay-modern
graphql-ufc-api
GraphQL server for UFC's public API
Stars: ✭ 26 (-45.83%)
Mutual labels:  relay-modern
next-dashboard
A complete React/Redux/Relay/Next.js dashboard example
Stars: ✭ 65 (+35.42%)
Mutual labels:  relay-modern
React Firebase Starter
Boilerplate (seed) project for creating web apps with React.js, GraphQL.js and Relay
Stars: ✭ 4,366 (+8995.83%)
Mutual labels:  relay-modern
relay-compiler-plus
Custom relay compiler which supports persisted queries
Stars: ✭ 68 (+41.67%)
Mutual labels:  relay-modern
blog-projects
🗄Projects used while writing my personal blog
Stars: ✭ 91 (+89.58%)
Mutual labels:  relay-modern
facebook-arsenal
[Full stack] React Native + Relay modern template with Node + GraphQL backend
Stars: ✭ 19 (-60.42%)
Mutual labels:  relay-modern
react-relay-rebind
Component-scope state management for Relay modern & React.
Stars: ✭ 15 (-68.75%)
Mutual labels:  relay-modern

Web Front-End for Cirrus CI

Build Status

Front end for Cirrus CI that uses Relay framework to minimize the amount of business logic.

Development Guide

  • Run yarn to install all external dependencies.
  • Run yarn bootstrap to compile all GraphQL queries and mutations and to sync the schema.

After everything is prepared, run npm start to start a local server. All changes will be instantly ready to view in your browser.

Running Production Build Locally

Running a production build locally might be useful for testing large refactoring or major upgrades. In order to do so please build a Docker image locally and then simply run the image via Docker CLI:

./.ci/build_docker.sh
docker run -p 8080:8080 cirrusci/web-front-end:latest

Authentication from localhost

In order to authenticate with api.cirrus-ci.com from locally running Cirrus CI Web, login on cirrus-ci.com, and remove the Same-Site restrictions for cirrusUserId and cirrusAuthToken cookies (for api.cirrus-ci.com, on Firefox this means setting Secure to false). (EditThisCookie works just fine for it).

Productivity Tips

Disable Type Checking temporarily

This app is written in TypeScript and whenever TypeScript finds a static type error it will display an "error overlay" in the browser which prevents you "seeing" the app even if it was compilable to JS. Sometimes during quick experimentation this can be annoying. Therefore you can disable typechecking temporarily by running the app with:

$ npm run start-untyped

VSCode

If you happen to use VSCode, here are some recommended extensions which work well with this app:

  • Visual Studio IntelliCode - provides AI based code completion
  • GraphQL (prisma.vscode-graphql) - provides syntax highlighting for GraphQL queries

Gitpod

You can also use Gitpod, an online IDE perfect for developing this app. Once you have forked the repository, navigate to https://gitpod.io/#https://github.com/YOURUSERNAME/cirrus-ci-web. Gitpod will automatically setup the workspace and open it for you.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].