fullstacked

0.12.5 • Public • Published

FullStacked

FullStacked

A Ubiquitous Workspace for Developers

DEMO | WEBSITE

npm version Follow FullStacked on X Roadmap

FullStacked

FullStacked is a web application that provides a workspace for developers. It is so easy to spin up that you will jump into your dev environment with any device. FullStacked can run locally to utilize the resources of your powerful machine, or can be accessed remotely to leverage cloud computing.

Table of Contents

Other Pages

Installation

NPM

Recommended for Local use

Requirement

npm i -g fullstacked@latest
fullstacked

NPX

If you want to spin up FullStacked only once, use npx to install and run it on the fly

npx -y fullstacked@latest

Docker

Recommended for Cloud/Self-Hosted use

Requirement

docker run --rm -p 8000:8000 -v workspace-data:/home fullstackedorg/workspace

If you intend to use docker in your workspace, run it with the --privileged flag to enable it. Be aware that this opens up your container to more vulnerabilities.

docker run --rm --privileged -p 8000:8000 -v workspace-data:/home fullstackedorg/workspace

Docker Compose

services:
  fullstacked:
    image: fullstackedorg/workspace
    # privileged: true
    ports:
      - 8000:8000
    volumes:
      - workspace-data:/home

volumes:
  workspace-data:

FullStacked Screenshot

Environment Variables

Boolean type is nothing for false and 1 for true
ie: FORCE_PORT_USAGE=1 <= true

Variable Description Type Default Value
FULLSTACKED_PORT Define a port where FullStacked will listen to number 8000
PASS Password to access the workspace string -
AUTH_URL URL against which to authorize token generation string -
REVOKE_URL URL to poke on logout string -
LOGOUT_REDIRECT URL to redirect to after logout string -
STORAGE_ENDPOINT Endpoint to use for the storage Sync string https://auth.fullstacked.cloud/storages
USE_CLOUD_CONFIG Use the cloud config for storage Sync boolean false
CONFIG_FILE Path to file to save storage Sync configs string $HOME/.fullstacked-config
FORCE_PORT_USAGE Force the usage of direct port instead of port subdomain reverse-proxy (only useful in some docker installation edge cases) boolean false

FullStacked Cloud

FullStacked Cloud completely decouples computing and storage. Through a global network of servers, it provides syncing across all of your workspace instances and also provides access to ephemeral workspace instances. Meaning that every single device is a login or a npm command away from your entire workspace.

Here's a little doodle to help comprehend

FullStacked Setup Map

Readme

Keywords

none

Package Sidebar

Install

npm i fullstacked

Weekly Downloads

397

Version

0.12.5

License

MIT

Unpacked Size

79.5 MB

Total Files

938

Last publish

Collaborators

  • cplepage