Skip to content

Commit

Permalink
Update README
Browse files Browse the repository at this point in the history
  • Loading branch information
KenanBek committed Apr 9, 2019
1 parent 0298db5 commit c4b23ca
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 1 deletion.
15 changes: 15 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,18 @@

Hub for DEVelopment related stuff: news, articles, source codes, ideas, etc.

# Setup

## Using `virtualenv`

1. Make sure you have [Python 3] and [virtualenv] installed
2. Clone this repository: `git clone https://github.com/CoderVlogger/devhub.git`
3. Move into the project folder: `cd devhub`
4. Create a new virtualenv: `virtualenv venv -p python3`
5. Activate the virtualenv: `source ./venv/bin/activate`
6. Install dependencies: `pip install -r requirements.txt`


# Project Structure

## Repository structure
Expand All @@ -19,3 +31,6 @@ Hub for DEVelopment related stuff: news, articles, source codes, ideas, etc.
1. Share public posts
2. Post rating system
3. Post comments

[Python 3]: https://www.python.org/downloads/
[virtualenv]: https://virtualenv.pypa.io/en/stable/
1 change: 0 additions & 1 deletion src/account/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,3 @@ class Account(AbstractUser):
https://docs.djangoproject.com/en/dev/topics/auth/customizing/#using-a-custom-user-model-when-starting-a-project
"""
REQUIRED_FIELDS = ['username', 'email']

0 comments on commit c4b23ca

Please sign in to comment.