Compare commits
	
		
			4 Commits
		
	
	
		
			2e3c069410
			...
			3a2739dcf1
		
	
	| Author | SHA1 | Date | |
|---|---|---|---|
| 3a2739dcf1 | |||
| d7e3939949 | |||
| 77fc39f7ee | |||
| e04e1e2033 | 
							
								
								
									
										3
									
								
								.gitignore
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										3
									
								
								.gitignore
									
									
									
									
										vendored
									
									
								
							@ -1,7 +1,6 @@
 | 
				
			|||||||
**/__pycache__
 | 
					**/__pycache__
 | 
				
			||||||
*.pyc
 | 
					*.pyc
 | 
				
			||||||
venv/
 | 
					.venv/
 | 
				
			||||||
env/
 | 
					 | 
				
			||||||
.beaker/data/*
 | 
					.beaker/data/*
 | 
				
			||||||
!.beaker/data/.noremove
 | 
					!.beaker/data/.noremove
 | 
				
			||||||
nohup.out
 | 
					nohup.out
 | 
				
			||||||
 | 
				
			|||||||
							
								
								
									
										3
									
								
								.gitmodules
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										3
									
								
								.gitmodules
									
									
									
									
										vendored
									
									
								
							@ -1,3 +0,0 @@
 | 
				
			|||||||
[submodule "templates/plain"]
 | 
					 | 
				
			||||||
	path = templates/plain
 | 
					 | 
				
			||||||
	url = https://gitea.ditaajipratama.net/aji/costapy-template-plain.git
 | 
					 | 
				
			||||||
							
								
								
									
										18
									
								
								install.sh
									
									
									
									
									
								
							
							
						
						
									
										18
									
								
								install.sh
									
									
									
									
									
								
							@ -1,6 +1,12 @@
 | 
				
			|||||||
sudo apt-get install -y python3-pip
 | 
					python3 -m venv .venv # Create .venv
 | 
				
			||||||
pip install --upgrade pip
 | 
					
 | 
				
			||||||
pip install bottle # Micro Framework
 | 
					.venv/bin/pip3 install --upgrade pip # Upgrade pip
 | 
				
			||||||
pip install gunicorn # WSGI Server Backend
 | 
					
 | 
				
			||||||
pip install beaker # Session & caching library
 | 
					.venv/bin/pip3 install bottle # Micro Framework
 | 
				
			||||||
pip install mako # Template library
 | 
					.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 +0,0 @@
 | 
				
			|||||||
Subproject commit adcbeee71da67d013627b67855ce3351b3a847b7
 | 
					 | 
				
			||||||
		Loading…
	
		Reference in New Issue
	
	Block a user