daystram/cut
URL, snippet, and file sharing with ease. All content shared via Cut is ephemeral, only in-memory storage is used.
The application comes in two parts:
Name | Code Name | Stack |
---|---|---|
Back-end | cut-be | Rust, Actix Web, Redis |
Front-end | cut-fe | TypeScript, Vue.js |
To ease development, cargo-watch is used to live-reload the application. Install the tool as documented.
To begin developing, simply enter the sub-directory and run the development server:
$ cd cut-be
$ cargo watch -x 'run'
Populate .env.development
with the required credentials.
To begin developing, simply enter the sub-directory and run the development server:
$ cd cut-fe
$ yarn
$ yarn serve
cut-be
, and cut-fe
are containerized and pushed to Docker Hub. They are tagged based on their application name and version, e.g. daystram/cut:be
or daystram/cut:be-v2.0.1
.
To run cut-be
, run the following:
$ docker run --name cut-be --env-file ./.env -p 8080:8080 -d daystram/cut:be
And cut-fe
as follows:
$ docker run --name cut-fe -p 80:80 -d daystram/cut:fe
The following are required for cut-be
to function properly:
Their credentials must be provided in their respective services' configuration file.
For ease of deployment, the following docker-compose.yml
file can be used to orchestrate the stack deployment:
version: "3"
services:
cut-be:
image: daystram/cut:be
ports:
- "8080:8080"
env_file:
- /path_to_env_file/.env
restart: unless-stopped
cut-fe:
image: daystram/cut:fe
ports:
- "80:80"
restart: unless-stopped
redis:
image: redis:6.0-alpine
expose:
- 6379
volumes:
- /path_to_redis_data:/data
restart: unless-stopped
This project is licensed under the MIT License.
docker pull daystram/cut