https://github.com/marosiak/django_meme
Memes website created for portfolio purposes
https://github.com/marosiak/django_meme
Last synced: 3 months ago
JSON representation
Memes website created for portfolio purposes
- Host: GitHub
- URL: https://github.com/marosiak/django_meme
- Owner: marosiak
- Created: 2019-05-02T12:25:49.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2019-06-27T11:49:25.000Z (almost 6 years ago)
- Last Synced: 2025-01-03T16:25:00.457Z (5 months ago)
- Language: CSS
- Homepage: https://meme.maciejrosiak.me
- Size: 154 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# django_meme
This is meme website written in django for portfolio purposesYou can test this website on https://meme.maciejrosiak.me
# Features
- Creating accounts / logging in
- Uploading memes (image + title)
- Removing memes (only as admin) from meme list
- Responsible design
- Adding memes to favorite
- Filtring favorite memes
## TODO:
- Counting how many users made meme favorite
# Requirements`Python >= 3.7`
`Pip >= 19.1`# Get started
#### Setup sacret_key.txt
You have to create **sacret_key.txt** file in the project directory,
at the same level as **manage.py** and fill it with your sacret key which should be atleast 50 characters long.#### Install pipenv
``` shell
pip install pipenv
```#### Install dependencies and create virtual env
``` shell
pipenv install
```#### Enter virtual env
``` shell
pipenv shell
```#### Make migrations
``` shell
python manage.py makemigrations
python manage.py migrate
```
#### Run dev server
``` shell
python manage.py runserver
```
**If you want to deploy this project, you should check this out:** https://docs.djangoproject.com/en/2.2/howto/deployment/