Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/radthenone/fullstack-auth-posts

Simulate Posts like medium.com with users permissions
https://github.com/radthenone/fullstack-auth-posts

Last synced: 12 days ago
JSON representation

Simulate Posts like medium.com with users permissions

Awesome Lists containing this project

README

        

# Fullstack auth posts

| Apps | Results |
| ---------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| pre-commit | [![pre-commit.ci status](https://results.pre-commit.ci/badge/github/radthenone/fullstack-auth-posts/main.svg)](https://results.pre-commit.ci/latest/github/radthenone/fullstack-auth-posts/main) |
| coverage | [![Coverage Status](https://coveralls.io/repos/github/radthenone/fullstack-auth-posts/badge.svg?branch=main)](https://coveralls.io/github/radthenone/fullstack-auth-posts?branch=main) |

## Create project

```shell
docker-compose up frontend --build
docker-compose up postgres --build
docker-compose up django --build
```

### Run project
```shell
# FULL
docker-compose up
# ONLY ONE PART
docker-compose start django
docker-compose start frontend
# TO STOP
docker-compose stop django
docker-compose stop frontend
```

#### Run tests
```shell
docker-compose run django python manage.py test
```