-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
8f4ad07
commit 5e0897a
Showing
32 changed files
with
88 additions
and
88 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,12 @@ | ||
CORS_ALLOW_ORIGIN='*' | ||
DATABASE_URL='postgresql://playa:playa@localhost:5432/playa' | ||
JWT_SECRET='playa' | ||
MINIO_ROOT_USER='minio_playa' | ||
MINIO_ROOT_PASSWORD='minio_playa' | ||
DATABASE_URL='postgresql://townhall:townhall@localhost:5432/townhall' | ||
JWT_SECRET='townhall' | ||
MINIO_ROOT_USER='minio_townhall' | ||
MINIO_ROOT_PASSWORD='minio_townhall' | ||
MINIO_ACCESS_KEY='AKIAIOSFODNN7EXAMPLE' | ||
MINIO_SECRET_KEY='wJalrXUtnFEMIKK7MDENGKKPxRfiCYEXAMPLEKEY' | ||
PORT=7878 | ||
RUST_LOG='info' | ||
POSTGRES_USER='playa' | ||
POSTGRES_PASSWORD='playa' | ||
POSTGRES_DB='playa' | ||
POSTGRES_USER='townhall' | ||
POSTGRES_PASSWORD='townhall' | ||
POSTGRES_DB='townhall' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
|
||
<div> | ||
<h1 align="center">playa Frontend</h1> | ||
<h1 align="center">townhall Frontend</h1> | ||
<h4 align="center"> | ||
A "Host Yourself" Chat powered by Rust and Whizzes Contributors | ||
</h4> | ||
|
@@ -9,9 +9,9 @@ | |
<div align="center"> | ||
|
||
[![Discord](https://img.shields.io/discord/1011702194925490186?color=blue&label=discord&logo=discord)](https://discord.gg/yde6mcgs2C) | ||
![Build](https://github.com/whizzes/playa/workflows/build/badge.svg) | ||
![Tests](https://github.com/whizzes/playa/workflows/test/badge.svg) | ||
![Lint](https://github.com/whizzes/playa/workflows/lint/badge.svg) | ||
![Build](https://github.com/whizzes/townhall/workflows/build/badge.svg) | ||
![Tests](https://github.com/whizzes/townhall/workflows/test/badge.svg) | ||
![Lint](https://github.com/whizzes/townhall/workflows/lint/badge.svg) | ||
|
||
</div> | ||
|
||
|
@@ -22,18 +22,18 @@ | |
```bash | ||
# clone repository | ||
git clone [email protected]:whizzes/playa.git | ||
git clone [email protected]:whizzes/townhall.git | ||
|
||
# cd into the new directory | ||
cd ./playa/client | ||
cd ./townhall/client | ||
|
||
# create a `.env` file by copying contents from `.env.example` | ||
cp .env.example .env | ||
|
||
# install dependencies | ||
bun i | ||
|
||
# optional: make sure playa server is running | ||
# optional: make sure townhall server is running | ||
lsof -i -P -n | grep LISTEN | ||
|
||
# run on development mode | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
{ | ||
"name": "playa-web", | ||
"name": "townhall-web", | ||
"version": "0.1.0", | ||
"private": true, | ||
"scripts": { | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,7 +5,7 @@ edition = "2021" | |
authors = ["Esteban Borai <[email protected]>"] | ||
|
||
[lib] | ||
name = "playa" | ||
name = "townhall" | ||
path = "src/lib.rs" | ||
|
||
[dependencies] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.