mirror of
https://github.com/ookangzheng/blahdns.git
synced 2025-12-16 22:25:37 +07:00
Site update and added Feedback page
This commit is contained in:
32
website/feedback/README.md
Executable file
32
website/feedback/README.md
Executable file
@@ -0,0 +1,32 @@
|
||||
## PIP not found or zsh issue
|
||||
|
||||
```bash
|
||||
|
||||
# Will fix zsh not found pipenv on Mac 10.14.6
|
||||
sudo -H pip install -U pipenv
|
||||
|
||||
Source: https://stackoverflow.com/a/47898336
|
||||
```
|
||||
|
||||
## Development step
|
||||
|
||||
1. Get into pipenv first `pipenv shell`
|
||||
2. Install flask `pipenv install flask`
|
||||
3. PGSQL database adaptar `pipenv install psycopg2`
|
||||
4. PGSQL databse binary `pipenv install psycopg2-binary`
|
||||
5. SQLAlchemy `pipenv install flask-sqlalchemy`
|
||||
6. HTTP server for heroku `pipenv install gunicorn`
|
||||
|
||||
## Publish
|
||||
|
||||
```bash
|
||||
pip freeze > requirements.txt
|
||||
|
||||
# Create the branch on your local machine and switch in this branch :
|
||||
git checkout -b heroku
|
||||
|
||||
git push heroku heroku
|
||||
# List all branch
|
||||
git branch -a
|
||||
|
||||
```
|
||||
Reference in New Issue
Block a user