Skip to content
Open
Show file tree
Hide file tree
Changes from 31 commits
Commits
Show all changes
38 commits
Select commit Hold shift + click to select a range
24c5a83
<new> Establishing the basic environment
Mar 18, 2023
039e1e0
<fead> DRF's Serializers & Model
Mar 18, 2023
b92df2b
<feat> DRF's Routers
Mar 18, 2023
2d8def3
<chore> Revise the Rate limiting package
Mar 19, 2023
bfa1797
<feat> The header field displays the rate limit judgment
Mar 19, 2023
b0efae7
<test> requirement test && Concurrently test
Mar 21, 2023
7f01ce7
<feat> add sqlite datebase
Mar 22, 2023
957a816
<refactor> view ratelimit_tracking info
Mar 22, 2023
2237f7a
<docs> create README.md && add image
Mar 22, 2023
34eee2b
Update README.md
dirtyrabbit Mar 22, 2023
c6caa76
Update README.md
dirtyrabbit Mar 22, 2023
d99b5d1
Add files via upload
dirtyrabbit Mar 22, 2023
edfb479
Add files via upload
dirtyrabbit Mar 22, 2023
ee4e702
update gitignore
dirtyrabbit Mar 24, 2023
f94670f
Delete webpage.png:Zone.Identifier
dirtyrabbit Mar 24, 2023
f7d9866
update gitgnore
dirtyrabbit Mar 24, 2023
b6694a6
<remove> all file from repo
dirtyrabbit Mar 24, 2023
57ebc56
commit file with gitignore
dirtyrabbit Mar 24, 2023
f744ef6
remove all file
dirtyrabbit Mar 24, 2023
a16c0fa
<fix> commit with gitignore
dirtyrabbit Mar 24, 2023
4bf12a1
<remove> file under data/
dirtyrabbit Mar 24, 2023
8671382
<fix> the count of A mistake
dirtyrabbit Mar 26, 2023
87cb136
<feat> rate limit reset api
dirtyrabbit Mar 26, 2023
8e4f150
<test> add execution time
dirtyrabbit Mar 27, 2023
f237d4f
<feat> add response function and remove tracking function
dirtyrabbit Mar 27, 2023
2b36e0e
Update README.md
dirtyrabbit Mar 27, 2023
fdc7270
<refactor> adjust test about request time of GET
dirtyrabbit Mar 27, 2023
f3bb7c6
<feat> test time greate 1s loop
dirtyrabbit Mar 28, 2023
1703ed7
<test> verify the response header
dirtyrabbit Mar 28, 2023
5f8e886
<fix> git push ignore file
dirtyrabbit Mar 28, 2023
ba9c220
<fix> migrations error
dirtyrabbit Mar 28, 2023
9bba224
<docs> restore files
dirtyrabbit Apr 13, 2023
5e24494
<refactor> change dockerfile copy to add
dirtyrabbit Apr 13, 2023
71b31f6
<refactor> modify tests print
dirtyrabbit Apr 13, 2023
c3fb900
<chore> python 3 to 3.9
dirtyrabbit Apr 13, 2023
39bcb11
<refactor> api reset
dirtyrabbit Apr 13, 2023
c8208e3
<feat> add path field to db
dirtyrabbit Apr 13, 2023
2c4e084
<refactor> change dockerfile ADD to COPY
dirtyrabbit Apr 13, 2023
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
190 changes: 190 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,190 @@
# Created by https://www.toptal.com/developers/gitignore/api/linux,django
# Edit at https://www.toptal.com/developers/gitignore?templates=linux,django

data/
### Django ###
*.log
*.pot
*.pyc
__pycache__/
local_settings.py
db.sqlite3
db.sqlite3-journal
media

# If your build process includes running collectstatic, then you probably don't need or want to include staticfiles/
# in your Git repository. Update and uncomment the following line accordingly.
# <django-project-name>/staticfiles/

### Django.Python Stack ###
# Byte-compiled / optimized / DLL files
*.py[cod]
*$py.class

# C extensions
*.so

# Distribution / packaging
.Python
build/
develop-eggs/
dist/
downloads/
eggs/
.eggs/
lib/
lib64/
parts/
sdist/
var/
wheels/
share/python-wheels/
*.egg-info/
.installed.cfg
*.egg
MANIFEST

# PyInstaller
# Usually these files are written by a python script from a template
# before PyInstaller builds the exe, so as to inject date/other infos into it.
*.manifest
*.spec

# Installer logs
pip-log.txt
pip-delete-this-directory.txt

# Unit test / coverage reports
htmlcov/
.tox/
.nox/
.coverage
.coverage.*
.cache
nosetests.xml
coverage.xml
*.cover
*.py,cover
.hypothesis/
.pytest_cache/
cover/

# Translations
*.mo

# Django stuff:

# Flask stuff:
instance/
.webassets-cache

# Scrapy stuff:
.scrapy

# Sphinx documentation
docs/_build/

# PyBuilder
.pybuilder/
target/

# Jupyter Notebook
.ipynb_checkpoints

# IPython
profile_default/
ipython_config.py

# pyenv
# For a library or package, you might want to ignore these files since the code is
# intended to run in multiple environments; otherwise, check them in:
# .python-version

# pipenv
# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
# However, in case of collaboration, if having platform-specific dependencies or dependencies
# having no cross-platform support, pipenv may install dependencies that don't work, or not
# install all needed dependencies.
#Pipfile.lock

# poetry
# Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control.
# This is especially recommended for binary packages to ensure reproducibility, and is more
# commonly ignored for libraries.
# https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control
#poetry.lock

# pdm
# Similar to Pipfile.lock, it is generally recommended to include pdm.lock in version control.
#pdm.lock
# pdm stores project-wide configurations in .pdm.toml, but it is recommended to not include it
# in version control.
# https://pdm.fming.dev/#use-with-ide
.pdm.toml

# PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm
__pypackages__/

# Celery stuff
celerybeat-schedule
celerybeat.pid

# SageMath parsed files
*.sage.py

# Environments
.env
.venv
env/
venv/
ENV/
env.bak/
venv.bak/

# Spyder project settings
.spyderproject
.spyproject

# Rope project settings
.ropeproject

# mkdocs documentation
/site

# mypy
.mypy_cache/
.dmypy.json
dmypy.json

# Pyre type checker
.pyre/

# pytype static type analyzer
.pytype/

# Cython debug symbols
cython_debug/

# PyCharm
# JetBrains specific template is maintained in a separate JetBrains.gitignore that can
# be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore
# and can be added to the global gitignore or merged into this file. For a more nuclear
# option (not recommended) you can uncomment the following to ignore the entire idea folder.
#.idea/

### Linux ###
*~

# temporary files which can be created if a process still has a handle open of a deleted file
.fuse_hidden*

# KDE directory preferences
.directory

# Linux trash folder which might appear on any partition or disk
.Trash-*

# .nfs files are created when an open file is removed but is still being accessed
.nfs*

# End of https://www.toptal.com/developers/gitignore/api/linux,django
201 changes: 0 additions & 201 deletions LICENSE
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

this file should not be touched. why you are removing it?

This file was deleted.

2 changes: 0 additions & 2 deletions README.md
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

this file should not be touched. why you are removing it?

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Sorry, I didn't include these files when testing 'gitignore' earlier. They have now been restored.

This file was deleted.

Loading