Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/radthenone/fullstack-auth-posts
- Owner: radthenone
- License: mit
- Created: 2023-06-06T08:17:06.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2025-01-20T22:41:26.000Z (14 days ago)
- Last Synced: 2025-01-20T23:26:29.214Z (14 days ago)
- Language: Python
- Homepage:
- Size: 544 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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
```