Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/tomfun/ero-like
report and experience exchange
https://github.com/tomfun/ero-like
anonymity digital-signature forum i2p
Last synced: 28 days ago
JSON representation
report and experience exchange
- Host: GitHub
- URL: https://github.com/tomfun/ero-like
- Owner: tomfun
- License: mit
- Created: 2021-01-13T15:06:41.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2023-07-14T10:27:20.000Z (over 1 year ago)
- Last Synced: 2024-04-18T03:01:02.023Z (9 months ago)
- Topics: anonymity, digital-signature, forum, i2p
- Language: TypeScript
- Homepage: https://ero-like.online/
- Size: 2.41 MB
- Stars: 0
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Ero
## Project setup
1. set ids mappings (optional for mac users)
```bash
echo "USER=$(id -nu)" >> .env
echo "uid=$(id -u)" >> .env
echo "gid=$(id -g)" >> .env
```
it creates `.env` file with something like that:
```dotenv
USER=tomfun
uid=1000
gid=1000
```
2. for local development setup db:
```bash
docker-compose up db
```
3. Go to *api* and follow instructions
4. Go to *frontend* and follow instructions## API has end to end (e2e) tests
Locally you can run it:
```bash
source ./dev/e2e-local.sh
# ....
# $npm run test:e2e -- --colors
# $test_debug
# ....# You can run it
$npm run test:e2e -- --colors
# Or debug
$test_debug
```