Dev : https://logos-ordinals-dashboard.vercel.app/
Staging : https://dev-dashboard.logos.co/
Prod : https://dashboard.logos.co/
- Clone this repository
$ git clone https://github.com/acid-info/logos-ordinals-dashboard.git
- Install the dependencies:
$ yarn install
- Create a .env file
NEXT_PUBLIC_API_MODE=development
for development
NEXT_PUBLIC_API_MODE=development
- Start the development server:
$ yarn dev
- Visit
http://localhost:3000
in your browser
- Generate files for production:
$ yarn build
The files will be created in the out
directory.
- The build is located in the
/out
directory. You can host it using a static HTTP server such as http-server
$ cd out && http-server . -p 3000
For more details about the NextJS static build process, visit the official documentation: https://nextjs.org/docs/pages/building-your-application/deploying/static-exports
- Visit
http://localhost:3000
in your browser.
-
Create a new working branch from
develop
:git checkout develop; git checkout -b my-changes
. -
Make your changes, push them to the
origin
, and open a Pull Request against thedevelop
branch. -
After approval, merge the pull request, and verify the changes on the staging server.
-
When ready to promote changes to the live website, create a pull request against the "master" branch, based on the "develop" branch.