Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/jeanp413/reddit-clone

A reddit clone using angular and django
https://github.com/jeanp413/reddit-clone

angular django django-rest-framework reddit webapp

Last synced: 17 days ago
JSON representation

A reddit clone using angular and django

Awesome Lists containing this project

README

        

# RedditClone

## Get Started
### Client
``` bash
# install dependencies
npm install

# serve with hot reload at localhost:4200 and proxy to localhost:8000
npm start
```
Now open http://localhost:4200/ in your browser

### Server
``` bash
cd server

# create virtual environment
python3 -m venv .env

source .env/bin/activate

# install dependencies
pip install -r requirements.txt

# serve with hot reload at localhost:8000
python manage.py runserver
```