Compare commits
1 Commits
master
...
system/bru
| Author | SHA1 | Date | |
|---|---|---|---|
| b66e5aa9cc |
5
bruno/bruno.json
Normal file
5
bruno/bruno.json
Normal file
@ -0,0 +1,5 @@
|
||||
{
|
||||
"version": "1",
|
||||
"name": "CostaPy",
|
||||
"type": "collection"
|
||||
}
|
||||
@ -1,3 +0,0 @@
|
||||
image = {
|
||||
"profile":"https://ditaajipratama.net/img/no-profile-donut.png"
|
||||
}
|
||||
12
install.sh
Normal file
12
install.sh
Normal file
@ -0,0 +1,12 @@
|
||||
python3 -m venv .venv # Create .venv
|
||||
|
||||
.venv/bin/pip3 install --upgrade pip # Upgrade pip
|
||||
|
||||
.venv/bin/pip3 install bottle # Micro Framework
|
||||
.venv/bin/pip3 install gunicorn # WSGI Server Backend
|
||||
.venv/bin/pip3 install beaker # Session & caching library
|
||||
.venv/bin/pip3 install mako # Template library
|
||||
|
||||
.venv/bin/pip3 install mysql-connector # Database connector
|
||||
.venv/bin/pip3 install bcrypt # Password hash
|
||||
.venv/bin/pip3 install pyjwt[crypto] # JWT
|
||||
@ -1,8 +0,0 @@
|
||||
bottle
|
||||
gunicorn
|
||||
beaker
|
||||
mako
|
||||
|
||||
mysql-connector
|
||||
bcrypt
|
||||
pyjwt[crypto]
|
||||
Loading…
Reference in New Issue
Block a user